forked from helio-training/full-stack-javascript-assignments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 881 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": "full-stack-node-assignments",
"version": "1.0.0",
"description": "Full Stack Node Assignments",
"main": "index.js",
"scripts": {
"build": "babel src -d dist",
"test": "ava **/*.test.js",
"docs": "esdoc -c ./esdoc.json",
"docs:open": "open ./docs/index.html"
},
"repository": {
"url": "https://TylerGarlick@github.com/helio-training/full-stack-node-assignments",
"type": "git"
},
"author": "Tyler Garlick <tgarlick@heliotraining.com>",
"license": "MIT",
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.18.0",
"babel-polyfill": "^6.16.0",
"babel-preset-latest": "^6.16.0",
"babel-register": "^6.22.0",
"esdoc": "^0.4.8",
"esdoc-es7-plugin": "^0.0.3"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register"
]
},
"dependencies": {
"ramda": "^0.22.1"
}
}