-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.8 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "ld-scheduler",
"version": "1.5.0",
"description": "Schedule launch darkly flags on or off",
"main": "lib/index.js",
"scripts": {
"start": "node ./src/index.js",
"test": "jest --watchAll",
"lint": "eslint --cache --format 'node_modules/eslint-friendly-formatter' ./src",
"build": "rimraf lib/* && babel src -d lib --ignore *.test.js",
"prepublish": "npm run build"
},
"jest": {
"verbose": true,
"setupFiles": [
"<rootDir>/test/setup.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/yusinto/ld-scheduler.git"
},
"keywords": [
"schedule",
"launch",
"darkly",
"feature",
"flags",
"deployment",
"automation"
],
"author": "Yus Ng",
"license": "ISC",
"bugs": {
"url": "https://github.com/yusinto/ld-scheduler/issues"
},
"homepage": "https://github.com/yusinto/ld-scheduler#readme",
"dependencies": {
"babel-cli": "^6.23.0",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.23.0",
"babel-runtime": "^6.23.0",
"bluebird": "^3.4.7",
"isomorphic-fetch": "^2.2.1",
"keymirror": "^0.1.1",
"lodash": "^4.17.4",
"moment": "^2.17.1"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-friendly-formatter": "^2.0.7",
"eslint-plugin-babel": "^4.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"jest": "^19.0.2",
"rimraf": "^2.6.1",
"testdouble": "^1.11.1"
}
}