-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
71 lines (71 loc) · 2.77 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
{
"name": "intact",
"description": "A very lightweight data-binding library to create rich web application",
"version": "2.5.16",
"main": "dist/index",
"scripts": {
"test": "karma start karma.conf.saucelabs.js",
"test:local": "karma start karma.conf.js",
"release": "npm run release-patch",
"prelease": "npm version prerelease && git push --tags --force && git push && npm publish",
"release-patch": "git checkout master && npm version patch && git push --tags && git push && npm publish",
"release-minor": "git checkout master && npm version minor && git push --tags && git push && npm publish",
"release-major": "git checkout master && npm version major && git push --tags && git push && npm publish",
"build": "rollup -c rollup.config.node.js && rollup -c rollup.config.browser.js && uglifyjs dist/intact.js -o dist/intact.min.js -m",
"doc": "webpack-dev-server --config site/webpack.config.js",
"build:doc": "webpack --config site/webpack.config.js && cp docs site/dist -r",
"deploy:doc": "node site/build.js"
},
"repository": {
"type": "git",
"url": "git://github.com/Javey/Intact"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-remove-strict-mode": "0.0.2",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"core-js": "^2.5.0",
"css-loader": "^0.28.4",
"director": "^1.2.8",
"es6-promise": "^4.1.1",
"express": "^4.13.1",
"highlight.js": "^9.12.0",
"html-webpack-plugin": "^3.2.0",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^3.0.0",
"jquery": "^3.4.0",
"karma": "^4.0.1",
"karma-coverage": "^1.1.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-sauce-launcher": "^2.0.2",
"karma-webpack": "^3.0.5",
"lodash": "^4.17.11",
"markdown-it": "^8.4.2",
"markdown-it-decorate": "^1.2.2",
"misstime": "git+https://github.com/Javey/misstime.git",
"mocha": "^4.1.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-watch": "^3.2.2",
"sinon": "^1.17.3",
"style-loader": "^0.18.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vdt": "git+https://github.com/Javey/vdt.js.git",
"vdt-loader": "^1.4.4",
"webpack": "^3.12.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.14"
}
}