-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.24 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.24 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "weaver-export-node-service",
"version": "0.0.1",
"author": {
"name": "Carlos Villanueva",
"url": "https://github.com/carvilsi",
"email": "carlos@sysunite.com"
},
"readme": "README.md",
"main": "lib/index.js",
"license": "GPL-3.0",
"repository": {},
"dependencies": {
"bluebird": "^3.3.5",
"coffee": "^3.2.4",
"config": "^1.26.2",
"express": "^4.13.0",
"moment": "^2.19.2",
"request": "^2.74.0",
"request-promise": "^4.1.1",
"weaver-sdk": "^4.2.0-beta.1",
"winston": "^2.4.0",
"winston-daily-rotate-file": "^1.7.2"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coffee-script": "^1.9.3",
"mocha": "^3.2.0",
"npm-watch": "^0.1.8"
},
"engines": {
"node": ">=0.8"
},
"scripts": {
"start": "./node_modules/.bin/coffee src/index.coffee",
"prepublish": "./node_modules/.bin/coffee -o lib -c src",
"watch-test": "npm-watch test",
"watch-start": "npm-watch start",
"test": "mocha test/"
},
"watch": {
"start": {
"patterns": [
"src"
],
"extensions": "coffee"
},
"test": {
"patterns": [
"src",
"test"
],
"extensions": "coffee"
}
}
}