-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.57 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
{
"name": "banderole",
"version": "0.5.0",
"description": "Banderole is a versatile Javascript feature-flag/toggle library designed with simplicity in mind",
"main": "lib/index.js",
"repository": "[email protected]:lcallarec/banderole.git",
"author": "Laurent Callarec <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.18.1",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.12.2",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.66.0",
"flow-copy-source": "^1.3.0",
"jest": "^22.4.2",
"rimraf": "^2.6.2"
},
"scripts": {
"lint": "node ./node_modules/eslint/bin/eslint.js src/",
"test": "node ./node_modules/jest-cli/bin/jest.js src/",
"lib-test": "node ./node_modules/jest-cli/bin/jest.js lib/",
"babel": "./node_modules/babel-cli/bin/babel.js",
"clean": "node ./node_modules/.bin/rimraf lib",
"build": "yarn clean;yarn build:babel;yarn build:flow",
"build:babel": "node ./node_modules/babel-cli/bin/babel.js src --out-dir lib --copy-files",
"build:flow": "node ./node_modules/.bin/flow-copy-source -v src lib",
"flow": "./node_modules/.bin/flow"
}
}