-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.43 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
{
"name": "intact-react",
"version": "1.1.31",
"description": "A compatibility layer for running intact component in react v16",
"main": "dist/index.js",
"scripts": {
"test": "node ./node_modules/karma/bin/karma start karma.config.js",
"test:cli": "KARMA_ENV=cli node ./node_modules/karma/bin/karma start karma.config.js",
"build": "rollup -c rollup.config.node.js && rollup -c rollup.config.js && uglifyjs dist/intact.react.js -o dist/intact.react.min.js -m",
"release": "npm run release-patch",
"prelease": "npm run build && git commit -am 'build...'; npm version prerelease && git push --tags --force && git push && npm publish",
"release-patch": "npm run build && git commit -am 'build...'; npm version patch && git push --tags && git push && npm publish",
"release-minor": "npm run build && git commit -am 'build...'; npm version minor && git push --tags && git push && npm publish",
"release-major": "npm run build && git commit -am 'build...'; npm version major && git push --tags && git push && npm publish"
},
"repository": {
"type": "git",
"url": "git@newgit.op.ksyun.com:ksyun-fe/intact-react.git"
},
"keywords": [
"react",
"intact"
],
"author": "wangjianliang",
"license": "MIT",
"peerDependencies": {
"intact": "^2.4.3",
"react": "^16.0.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.2.0",
"css-loader": "^1.0.1",
"file-loader": "^2.0.0",
"intact": "^2.5.4",
"karma": "^4.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.0-rc.2",
"kpc": "^0.5.15",
"mocha": "^5.2.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rollup": "^0.52.3",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^8.4.1",
"sinon": "^7.0.0",
"sinon-chai": "^3.2.0",
"style-loader": "^0.23.1",
"uglify-js": "^3.10.0",
"vdt": "^1.3.1",
"vdt-loader": "^1.3.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}