forked from agileworks-tw/node-tdd-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 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
{
"name": "system-agent-core",
"description": "",
"version": "0.0.5",
"main": "lib/index.js",
"author": "",
"repository": "/system-agent-core",
"license": "MIT",
"scripts": {
"compile": "babel src --out-dir lib",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prepublish": "npm run compile",
"test": "./node_modules/.bin/mocha",
"watchdb": "sqlite3 database.db 'select * from users'",
"watchPost": "sqlite3 database.db 'select * from posts'"
},
"devDependencies": {
"babel-cli": "*",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.1.4",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "*",
"chai": "*",
"coveralls": "*",
"eslint": "^2.11.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"isparta": "*",
"mocha": "*",
"sinon": "*",
"supertest": "^1.2.0",
"supertest-as-promised": "^3.1.0"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"fb": "^1.1.1",
"sequelize": "^3.23.3",
"sqlite3": "^3.1.4"
}
}