forked from jeffprandall/plangrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 844 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
{
"name": "plangrid-js",
"version": "0.0.1",
"description": "Polls PlanGrid api and stores data locally in a database",
"main": "app.js",
"scripts": {
"test": "npm run test-unit",
"test-unit": "mocha test/unit/**.test.js --reporter spec",
"test-integration": "mocha test/integration/*.test.js --reporter spec"
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^4.0.0",
"moment": "^2.15.1",
"moment-timezone": "^0.5.5",
"node-schedule": "^1.2.0",
"pg": "^6.1.0",
"sequelize": "^3.24.3",
"tedious": "^1.14.0",
"winston": "^2.2.0",
"winston-syslog": "^1.2.5"
},
"devDependencies": {
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-mocha": "^3.0.1",
"gulp-nsp": "^2.4.2",
"gulp-util": "^3.0.7",
"mocha": "^3.1.2"
}
}