-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.77 KB
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
{
"name": "lore-forms-monorepo",
"private": true,
"license": "MIT",
"description": "This is the monorepo for Lore Forms",
"homepage": "https://github.com/lore/lore-forms#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lore/lore-forms.git"
},
"bugs": {
"url": "https://github.com/lore/lore-forms/issues"
},
"scripts": {
"lerna:bootstrap": "lerna bootstrap",
"lerna:updated": "lerna updated",
"lerna:publish": "lerna publish",
"lerna:publish:prerelease": "lerna publish --npm-tag=next",
"lerna:publish:prerelease:all": "lerna publish --npm-tag=next --force-publish=*",
"check": "npm run lint && npm run test",
"clean": "lerna exec npm run clean",
"clean:examples": "rm -rf examples/**/node_modules",
"clean:serial": "lerna exec --concurrency 1 npm run clean",
"clean:node:packages": "lerna clean --yes",
"clean:node": "npm run clean:node:packages && rm -rf node_modules",
"clean:all": "npm run clean && npm run clean:node",
"lint": "lerna exec npm run lint",
"postinstall": "npm run lerna:bootstrap",
"test:serial": "lerna exec --concurrency 1 npm test",
"test": "lerna exec npm test"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.0.0",
"babel-plugin-transform-imports": "^1.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-react": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"lerna": "2.2.0"
},
"peerDependencies": {}
}