-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 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
{
"name": "dfo-pm-changes-notifier",
"version": "1.0.0",
"private": true,
"main": "index.js",
"scripts": {
"start": "babel-node src/index.js",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"flow": "flow",
"preinstall": "npm prune",
"postinstall": "flow-typed install"
},
"dependencies": {
"babel-cli": "^6.24.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.2.0",
"babel-preset-stage-3": "^6.3.13",
"jexl": "^1.1.4",
"jwt-decode": "^2.1.0",
"node-fetch": "^1.6.3",
"pg": "^6.1.4",
"qs": "^6.4.0",
"urijs": "^1.18.10",
"ws": "^2.2.1"
},
"pre-commit": [
"lint",
"flow"
],
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.14.1",
"eslint-config-mystand": "git+https://bitbucket.org/mystand/eslint-config-mystand.git#2cba202",
"eslint-config-mystand-flow": "git+https://bitbucket.org/mystand/eslint-config-mystand-flow.git#aec74db",
"flow-bin": "^0.39.0",
"flow-typed": "2.1.2",
"pre-commit": "^1.2.2"
}
}