forked from pbu88/diffy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 947 Bytes
/
package.json
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
{
"name": "diffy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run build; mocha --recursive build/tests/",
"coverage": "nyc -r html --require babel-core/register npm test",
"start": "npm run build; node build/src/app.js",
"build": "babel src/ -d build/src; babel tests/ -d build/tests"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.13.3",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.3.5",
"diff2html": "^2.0.0",
"express": "^4.13.3",
"express-session": "^1.11.3",
"lodash": "^4.15.0",
"mongodb": "^2.0.42",
"multer": "^1.0.3",
"nunjucks": "^1.3.4",
"promise": "^7.1.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"nyc": "^8.3.0"
}
}