-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.69 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
{
"name": "circle-config-creator",
"version": "0.2.0",
"main": "lib/index.js",
"repository": "https://github.com/deecewan/circle-config-creator",
"author": "David Buchan-Swanson <[email protected]>",
"license": "MIT",
"files": [
"lib",
"src"
],
"devDependencies": {
"@babel/cli": "^7.0.0-beta.51",
"@babel/core": "^7.0.0-beta.51",
"@babel/node": "^7.0.0-beta.51",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.51",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-flow": "^7.0.0-beta.51",
"@deecewan/eslint-config-flow": "^0.0.5",
"babel-core": "^7.0.0-0",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-prettier": "^2.6.1",
"flow-bin": "^0.74.0",
"husky": "^1.0.0-rc.9",
"jest": "^23.1.0",
"lint-staged": "^7.2.0",
"prettier": "^1.13.5"
},
"scripts": {
"build": "babel -d lib src",
"build:circle-config": "babel-node .circleci/config.js",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint src __tests__ .circleci",
"prepublish": "yarn build",
"test": "jest"
},
"dependencies": {
"js-yaml": "^3.12.0"
},
"husky": {
"hooks": {
"pre-commit": "flow && lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
],
".config/*.js": [
"babel-node .circleci/config.js",
"git add .circleci/config.yml"
]
}
}