-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.33 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
68
69
70
71
72
73
74
75
76
77
{
"name": "help-r2d2-escape-node",
"version": "0.1.0",
"private": true,
"description": "",
"author": {
"name": "Ahmed Tarek",
"email": "ahmed.tokyo1@gmail.com",
"url": "https://github.com/A-Tokyo"
},
"repository": {
"type": "git",
"url": "https://github.com/A-Tokyo/help-r2-d2-escape.git"
},
"main": "src/",
"files": [
"flow/",
"lib/",
"scripts/",
"src/"
],
"homepage": "https://github.com/A-Tokyo/help-r2-d2-escape#readme",
"bugs": {
"url": "https://github.com/A-Tokyo/help-r2-d2-escape/issues"
},
"scripts": {
"start": "babel-node src",
"dev": "yarn build --watch",
"build": "rm -rf lib && yarn build:flow && yarn build:js",
"build:js": "babel src --out-dir lib",
"build:flow": "flow-copy-source -v -i '**/*.test.js,**/__test__/' src lib",
"test": "export NODE_ENV=test && yarn flow && yarn build && node lib && yarn jest",
"coverage": "yarn test && yarn coverage-view",
"coverage-view": "open coverage/lcov-report/index.html || xdg-open coverage/lcov-report/index.html",
"precommit": "yarn flow && lint-staged && eslint . --fix",
"prepublish": "export NODE_ENV=production && yarn build",
"gen-kb": "babel-node ./scripts/generate-write-kb"
},
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-minify": "^0.2.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-flowtype": "^2.37.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.51.0",
"flow-copy-source": "^1.2.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"lint-staged": "^4.3.0",
"prettier": "^1.7.4",
"regenerator-runtime": "^0.11.0"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma --write",
"git add"
]
}
}