-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"license": "MIT",
"author": {
"name": "Lucas Bento",
"email": "[email protected]",
"url": "https://github.com/lucasbento"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-rewire": "^1.0.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"chokidar": "^1.6.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"fs-extra": "^2.1.2",
"jest": "^19.0.2",
"jest-cli": "^19.0.2",
"lerna": "2.0.0-beta.38",
"lerna-changelog": "^0.4.0",
"rimraf": "^2.6.1",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.6.0"
},
"scripts": {
"bootstrap": "lerna bootstrap --concurrency=1",
"build": "lerna exec -- npm run build",
"clean": "lerna clean",
"lint": "eslint \"packages/*/src/**/*.js\" \"packages/*/__tests__\"",
"prepublish": "npm run build",
"test": "jest --config jest.json",
"watch": "lerna exec -- npm run watch"
}
}