-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 986 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 986 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
33
34
35
36
37
38
39
{
"name": "interact-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --reporter nyan src/*.spec.js",
"test:prod": "mocha src/*.spec.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheInteract/interact-node.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheInteract/interact-node/issues"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.16",
"eslint": "^3.15.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^10.1.2",
"sinon": "^1.17.7"
},
"dependencies": {
"bluebird": "^3.4.7",
"config": "^1.25.1",
"lodash": "^4.17.4",
"request": "^2.79.0"
}
}