-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 829 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 829 Bytes
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
{
"private": true,
"scripts": {
"changelog": "lerna-changelog",
"create-cep-extension": "tasks/cra.sh",
"test":
"rm -rf my-app && yarn run create-cep-extension my-app && cd my-app && yarn start",
"e2e": "tasks/e2e-simple.sh",
"postinstall": "lerna bootstrap",
"publish": "tasks/release.sh",
"publish-current": "lerna exec --no-private -- npm publish",
"format":
"prettier --trailing-comma es5 --single-quote --write 'packages/*/*.js' 'packages/*/!(node_modules)/**/*.js'"
},
"devDependencies": {
"eslint": "3.16.1",
"husky": "^0.13.2",
"lerna": "2.0.0-rc.3",
"lerna-changelog": "^0.2.3",
"prettier": "^1.7.4"
},
"lint-staged": {
"*.js": ["prettier --trailing-comma es5 --single-quote --write", "git add"],
"yarn.lock": ["git rm --cached"]
}
}