-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 787 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 787 Bytes
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
{
"name": "test",
"scripts": {
"pretest": "npm run build",
"prestart": "npm run build",
"prebuild": "npm install && typings install",
"build": "gulp",
"start": "node build/example1",
"test": "mocha -c \"dist/**/*.spec.js\""
},
"private": true,
"license": "MIT",
"devDependencies": {
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-rename": "^1.2.2",
"gulp-typedoc": "^2.0.0",
"gulp-typescript": "^2.13.4",
"mocha": "^2.5.3",
"typescript": "^1.8.10",
"typings": "^1.0.4"
},
"dependencies": {
"babel-runtime": "^6.9.0",
"express": "^4.13.4",
"ramda": "^0.21.0",
"ramda-fantasy": "^0.5.0"
}
}