-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
33 lines (33 loc) · 1.11 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
{
"scripts": {
"start": "lerna exec -- npm start",
"link": "lerna exec -- npm link @accounts/client; lerna exec -- npm link @accounts/common; lerna exec -- npm link; lerna exec -- npm link @accounts/react",
"compile": "lerna run compile",
"flow:check": "flow check",
"lint": "eslint packages/*/src",
"prebootstrap": "npm install",
"postinstall": "lerna bootstrap",
"pretest": "npm run compile",
"test": "npm run testonly",
"posttest": "npm run lint",
"testonly": "lerna run testonly",
"coverage": "lerna run coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/js-accounts/react"
},
"license": "MIT",
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"flow-bin": "^0.38.0",
"lerna": "2.0.0-beta.38"
}
}