-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 966 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
{
"name": "chatterbox-server",
"version": "1.1.0",
"description": "Implement a chat server",
"author": "Hack Reactor <curriculum.team@hackreactor.com>",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"postinstall": "curl -s https://raw.githubusercontent.com/reactorcore/pomander/master/bin/install | bash",
"start": "nodemon server/basic-server.js --ignore test.json",
"start:es6": "babel-node server/basic-server.js",
"test": "mocha server/spec",
"test:es6": "mocha --compilers js:babel-register server/spec",
"lint": "eslint ./"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"mocha": "^2.4.5",
"request": "^2.70.0"
},
"babel": {
"presets": [
"es2015"
]
}
}