-
Notifications
You must be signed in to change notification settings - Fork 238
/
package.json
33 lines (33 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
{
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "lerna run build",
"build:prod": "lerna run build:prod",
"build:watch": "onchange -v 'packages/*/src/**/*.ts' -- npm run copy:docs",
"precopy:docs": "npm run build",
"clean:deps": "lerna run clean:deps && rimraf node_modules",
"clean:dist": "lerna run clean:dist",
"clean:docs": "yarn run rimraf docs/api docs/scripts",
"copy:docs": "mkdir -p docs/scripts && cp -r packages/cedar/dist/umd/ docs/scripts/",
"copy:readme": "cp README.md packages/cedar/README.md",
"predocs": "npm run clean:docs && npm run copy:docs",
"docs": "lerna run --scope @esri/cedar docs",
"predeploy": "npm run docs",
"deploy": "gh-pages -d docs",
"prerelease": "npm run copy:readme && git add .",
"release": "lerna publish",
"reset": "npm run clean:dist && npm run clean:deps && yarn",
"start": "npm run docs && npm run build:watch",
"test": "lerna run test"
},
"devDependencies": {
"gh-pages": "^2.0.1",
"lerna": "^2.8.0",
"onchange": "^4.1.0",
"rimraf": "^2.6.2"
},
"workspaces": [
"packages/*"
]
}