-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "mostaza-utils",
"version": "1.2.1",
"description": "Mostaza's utilities",
"main": "lib/index.js",
"scripts": {
"build": "npm run build:clean && npm run build:lib && npm run build:flow",
"build:clean": "rimraf lib",
"build:lib": "babel -d lib src",
"build:flow": "flow-copy-source -v src lib",
"jsdoc": "jsdoc2md --configure .jsdoc.json src/index.js",
"flow": "flow",
"precommit": "lint-staged",
"prettify": "prettier --write 'src/**/*.js'",
"prepublishOnly": "npm run build",
"lint": "eslint src"
},
"dependencies": {
"lodash": ">=4"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.31",
"@babel/core": "7.0.0-beta.31",
"@babel/preset-env": "7.0.0-beta.31",
"@babel/preset-flow": "7.0.0-beta.35",
"eslint": "4.13.1",
"eslint-plugin-react-app": "1.0.2",
"flow-bin": "0.61.0",
"flow-copy-source": "1.2.1",
"husky": "0.14.3",
"jsdoc-babel": "0.3.0",
"jsdoc-to-markdown": "3.0.3",
"lint-staged": "6.0.0",
"prettier": "1.9.2",
"rimraf": "2.6.2"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
},
"lint-staged": {
"src/**/*.js": [
"lint",
"prettier --write",
"git add"
]
}
}