forked from openspending/os-conductor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (27 loc) · 775 Bytes
/
package.json
File metadata and controls
30 lines (27 loc) · 775 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
{
"name": "os-conductor-service",
"description": "OpenSpending orchestration service - includes authorization, authentication adn webhooks",
"repository": "https://github.com/openspending/os-conductor",
"license": "MIT",
"private": true,
"engines": {
"node": "^4.1.0",
"npm": "^2.14.0"
},
"scripts": {
"check": "npm run review && npm run test",
"config": "less config.yml",
"develop": "gulp develop",
"gulp": "./node_modules/.bin/gulp",
"review": "pylama conductor",
"start": "gulp start",
"test": "nosetests tests -sv --with-coverage --cover-package conductor"
},
"dependencies": {
"browser-sync": "^2.10.0",
"gulp": "^3.9.0",
"js-yaml": "^3.4.3",
"lodash": "^3.10.1",
"shelljs": "^0.5.3"
}
}