-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 985 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
37
38
39
{
"name": "salieri",
"version": "3.0.0",
"engines": {
"node": ">= 6.0"
},
"engineStrict": true,
"description": "Tiny ES6 server for playing around with and debugging web component envelopes",
"main": "bin/salieri.js",
"bin": {
"salieri": "bin/salieri.js"
},
"scripts": {
"lint": "eslint '**/*.js'",
"test:integration": "test/integration/run.sh",
"test:unit": "mocha test/unit/",
"test": "npm run lint && npm run test:unit && npm run test:integration"
},
"author": "James Donohue <james.brackish@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/jamesdonoh/salieri.git"
},
"license": "ISC",
"dependencies": {
"express": "^4.13.4",
"mustache": "^2.2.1",
"request": "^2.75.0",
"request-promise": "^4.0.0",
"yargs": "^5.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"eslint": "^3.4.0",
"mocha": "^3.0.0",
"proxyquire": "^1.7.10"
}
}