forked from dennisreimann/uiengine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.66 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.66 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"private": true,
"name": "@uiengine/monorepo",
"description": "UIengine Monorepo",
"license": "MIT",
"version": "0.12.0",
"author": "Dennis Reimann <mail@dennisreimann.de> (https://dennisreimann.de)",
"homepage": "https://github.com/dennisreimann/uiengine",
"bugs": "https://github.com/dennisreimann/uiengine",
"repository": "dennisreimann/uiengine",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.1",
"eslint": "4.19.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-standard": "^3.1.0",
"lerna": "^2.11.0",
"mocha": "^5.1.1",
"mocha-lcov-reporter": "^1.3.0",
"mocha-sinon": "^2.0.0",
"nyc": "^11.7.1",
"rimraf": "^2.6.2",
"sinon": "^5.0.3",
"standard": "^11.0.1"
},
"scripts": {
"clean": "lerna clean --yes && rimraf test/project/node_modules && yarn run packages:unlink",
"setup": "lerna bootstrap && yarn run packages:link && yarn run test-project:setup",
"start": "lerna run start --parallel",
"build": "lerna run build --parallel",
"packages:link": "for pkg in $(ls -1FA packages | grep / | tr -d /); do yarn --cwd packages/$pkg link; done",
"packages:unlink": "for pkg in $(ls -1FA packages | grep / | tr -d /); do yarn --cwd packages/$pkg unlink; done",
"lint": "lerna run lint --parallel && eslint test/support && cd test/project && yarn run lint",
"test": "cd packages && mocha --require babel-register -R dot */test",
"test-watch": "yarn test -w --watch-extensions ejs,hbs,js,jsx,json,marko,md,pug,vhtml,vue,yml",
"cover": "nyc yarn test",
"release": "yarn run lint && yarn run cover && NODE_ENV=production yarn run build && lerna publish",
"test-project": "cd test/project && NODE_ENV=development yarn start",
"test-project:setup": "cd test/project && yarn setup",
"test-project:build": "NODE_ENV=production yarn run build && cd test/project && yarn install && NODE_ENV=production yarn build",
"test-project:deploy": "yarn run test-project:build && rsync -ravzulO --chmod=u=rwX,g=rX --delete-after test/project/deploy/ test/tmp/ uiengine-sample-project.uix.space:virtual/uiengine-sample-project.uix.space"
},
"workspaces": [
"packages/*"
],
"nyc": {
"exclude": [
"packages/**/lib",
"packages/**/test",
"test"
]
},
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
}
}