-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "pipe",
"version": "1.0.0",
"description": "A small library for functional data piping in JavaScript.",
"main": "src/index.js",
"author": "Adam Pash",
"license": "MIT",
"scripts": {
"test": "jest --watch",
"precommit": "lint-staged",
"lint": "./node_modules/.bin/eslint ./src"
},
"lint-staged": {
"src/**/*.js": [
"./node_modules/.bin/eslint ./src --fix",
"prettier --write --single-quote --trailing-comma es5",
"git add"
]
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-object-rest-spread": "^0.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"changelog-maker": "^2.2.5",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-prettier": "^2.1.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"husky": "^0.13.4",
"jest": "^20.0.4",
"lint-staged": "^3.6.0",
"prettier": "^1.4.2"
}
}