-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.16 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.16 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"repository": {
"type": "git",
"url": "git@github.com:will-weiss/todomvc-noscript.git"
},
"main": "index.js",
"scripts": {
"cover": "istanbul cover _mocha --root compiled --include-all-sources true -- --require test_setup.js 'compiled/**/*.spec.js'",
"coverage": "npm run cover && npm run remap",
"remap": "remap-istanbul -i coverage/coverage.json -o html-report -t html",
"start": "tsc && node index.js",
"test": "tsc && mocha --require source-map-support/register --require test_setup.js 'compiled/**/*.spec.js'",
"test:watch": "{ tsc -w &\nmocha --require source-map-support/register --require test_setup.js 'compiled/**/*.spec.js' --watch --watch-extensions js &\nwait\n}"
},
"author": "Will Weiss <will.weiss1230@gmail.com>",
"license": "ISC",
"dependencies": {
"async-file": "2.0.2",
"bluebird": "3.5.0",
"body-parser": "1.17.0",
"chai-http": "3.0.0",
"cheerio": "0.22.0",
"express": "4.15.0",
"express-session": "1.15.1",
"lodash": "4.17.4",
"mkdirp": "0.5.1",
"mustache": "2.3.0",
"mustache-express": "1.2.4",
"request": "2.80.0",
"request-promise": "4.1.1",
"session-file-store": "1.0.0",
"source-map-support": "0.4.11",
"ts-node": "2.1.0"
},
"devDependencies": {
"@types/assertion-error": "1.0.30",
"@types/bluebird": "3.0.37",
"@types/body-parser": "0.0.34",
"@types/chai": "3.4.34",
"@types/chai-as-promised": "0.0.29",
"@types/chai-http": "0.0.30",
"@types/cheerio": "0.17.31",
"@types/express": "4.0.35",
"@types/express-session": "0.0.32",
"@types/lodash": "4.14.54",
"@types/mkdirp": "0.3.29",
"@types/mocha": "2.2.35",
"@types/mustache": "0.8.29",
"@types/request": "0.0.40",
"@types/request-promise": "4.1.33",
"@types/sinon": "1.16.35",
"@types/sinon-chai": "2.7.27",
"@types/uuid": "2.0.29",
"chai": "3.4.1",
"chai-as-promised": "6.0.0",
"istanbul": "0.4.5",
"mocha": "2.3.3",
"nodemon": "1.11.0",
"remap-istanbul": "0.9.1",
"sinon": "1.17.7",
"sinon-chai": "2.8.0",
"ts-node": "2.1.0",
"tslint": "4.5.1",
"typescript": "2.2.1",
"uuid": "3.0.1"
}
}