-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
80 lines (80 loc) · 2.83 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
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
71
72
73
74
75
76
77
78
79
80
{
"name": "@rapiop/rapiop",
"version": "2.1.1",
"description": "Run all project in one place/project",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/rapiop/rapiop.git"
},
"keywords": [
"rapiop",
"spa",
"micro",
"frontend"
],
"bugs": {
"url": "https://github.com/rapiop/rapiop/issues"
},
"homepage": "https://github.com/rapiop/rapiop#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"start": "NODE_ENV=development webpack-dev-server",
"build": "rm -rf build/ && NODE_ENV=production webpack",
"build:lib": "rm -rf lib/ && babel src/ -d lib/ -x \".js\",\".ts\" --config-file \"./babel.config.json\" --source-maps --ignore \"src/**/__tests__/**/*\"",
"build:lib-without-polyfill": "rm -rf lib-without-polyfill/ && babel src/ -d lib-without-polyfill/ -x \".js\",\".ts\" --config-file \"./babel-without-polyfill.config.json\" --source-maps --ignore \"src/**/__tests__/**/*\"",
"stats": "NODE_ENV=production webpack --profile --json > stats.json",
"analyzer": "ANALYZER=true NODE_ENV=production webpack",
"ci": "node --version && babel --version",
"before-publish": "npm run build && npm run build:lib && npm run build:lib-without-polyfill",
"publish:patch": "npm run before-publish && npm version patch && npm publish",
"publish:minor": "npm run before-publish && npm version minor && npm publish",
"publish:major": "npm run before-publish && npm version major && npm publish",
"docs": "typedoc --theme minimal --out docs ./src"
},
"author": "ZxBing0066",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.6.0",
"core-js": "^3.2.1",
"lodash": "^4.17.13",
"z-sandbox": "^0.0.11"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.3.3",
"@rapiop/mod": "^1",
"@types/lodash": "^4.14.136",
"@types/tapable": "^1.0.4",
"babel-eslint": "^10.0.1",
"babel-jest": "^25.3.0",
"babel-loader": "^8.0.4",
"babel-plugin-import": "^1.12.1",
"babel-plugin-lodash": "^3.3.4",
"babel-polyfill": "^6.26.0",
"eslint": "^5.7.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.3.0",
"prettier": "^1",
"typedoc": "^0.15.0",
"typescript": "^4.5.2",
"webpack": "^4.23.1",
"webpack-bundle-analyzer": "^3.5.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.11"
},
"peerDependencies": {
"@rapiop/mod": "^0.1 | ^1"
},
"jest": {
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.js"
]
}
}