forked from 18F/unit-testing-node
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.12 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "mbland-unit-testing-node",
"version": "0.0.0",
"description": "Packages necessary for the unit testing exercise.",
"main": "index.js",
"scripts": {
"test": "gulp test",
"test-all": "gulp test-all",
"lint": "gulp lint",
"lint-all": "gulp lint-all"
},
"repository": {
"type": "git",
"url": "https://github.com/mbland/unit-testing-node/"
},
"keywords": [
"testing"
],
"author": "Mike Bland <mbland@acm.org> (https://mike-bland.com/)",
"license": "ISC",
"devDependencies": {
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"chai-things": "^0.2.0",
"coffee-script": "^1.10.0",
"eslint": "^1.10.3",
"eslint-plugin-no-unsafe-innerhtml": "^1.0.14",
"eslint-plugin-scanjs-rules": "^0.1.4",
"gulp": "^3.9.0",
"gulp-eslint": "^1.1.1",
"gulp-jshint": "^2.0.0",
"gulp-mocha": "^2.2.0",
"hubot": "^2.17.0",
"hubot-slack": "^3.4.2",
"hubot-test-helper": "^1.3.0",
"jshint": "^2.9.1",
"mocha": "^2.3.4",
"sinon": "^1.17.2",
"slack-client": "^1.5.1",
"temp": "^0.8.3",
"yargs": "^3.31.0"
},
"dependencies": {}
}