-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 KB
/
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
{
"name": "@statengine/se-san-francisco-demo-poller",
"version": "0.0.1",
"description": "Peridoical polls DataSF for Fire Incident Data",
"main": "lib",
"author": "Prominent Edge",
"license": "GPL-3.0",
"private": true,
"scripts": {
"lint": "node_modules/eslint/bin/eslint.js src/** test/**",
"test": "mocha --require babel-core/register ./test/**/*.js",
"compile": "babel -d lib/ src/ --copy-files",
"prepare": "npm run compile"
},
"dependencies": {
"async": "^2.6.0",
"lodash": "^4.17.5",
"moment": "^2.19.2",
"request": "^2.85.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.24.1",
"babel-tap": "^5.0.0",
"chai": "^4.1.0",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0"
}
}