-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
37 lines (37 loc) · 947 Bytes
/
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
{
"name": "subschema-devel",
"dependencies": {
"istanbul": "^0.4.5",
"mrbuilder-tool": "^3.3.1",
"nyc": "^14.1.1"
},
"scripts": {
"clean": "lerna run clean && lerna clean --yes && rimraf node_modules",
"coverage": "MRBUILDER_COVERAGE_USE_GLOBAL=1 lerna --concurrency 1 run test && istanbul report --dir ./docs/coverage --include './coverage/subschema*/cov*.json' html",
"test": "lerna run test",
"prepare": "lerna run prepare",
"ci": "yarn install && yarn run test",
"demo": "cd subschema && yarn run prepublish && cd ../demo && yarn start"
},
"private": true,
"devDependencies": {
"lerna": "^3.16.4",
"rimraf": "^3.0.0"
},
"workspaces": [
"core/*",
"resolvers/*",
"plugins/*",
"presets/*",
"subschema",
"examples/*",
"demo",
"docs"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"yarn": "^1.3.0"
}
}