-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
76 lines (76 loc) · 2.49 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
{
"name": "vidom",
"version": "0.12.1",
"description": "Library to build UI",
"keywords": [
"virtual",
"dom",
"component",
"ui",
"react",
"ssr",
"reactive"
],
"author": "Dmitry Filatov <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/dfilatov/vidom.git"
},
"files": [
"dist",
"lib"
],
"main": "lib/vidom.js",
"types": "lib/vidom.d.ts",
"devDependencies": {
"@babel/cli": "7.5.0",
"@babel/core": "7.5.0",
"@babel/preset-env": "7.5.0",
"babel-loader": "8.0.6",
"babel-plugin-vidom-jsx": "0.7.1",
"babelify": "10.0.0",
"browserify": "16.2.3",
"codemirror": "5.42.0",
"css-loader": "1.0.1",
"eslint": "6.0.1",
"expect.js": "0.3.1",
"mocha": "6.1.4",
"mocha-phantomjs-core": "2.1.2",
"phantomjs": "2.1.7",
"raw-loader": "0.5.1",
"rollup": "1.16.6",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-terser": "5.1.0",
"simulate": "git://github.com/dfilatov/simulate.js",
"sinon": "7.3.2",
"style-loader": "0.23.1",
"vow": "0.4.17",
"vow-node": "0.3.0",
"webpack": "4.35.2",
"webpack-cli": "3.3.5",
"webpack-dev-server": "3.7.2",
"zuul": "3.12.0"
},
"license": "MIT",
"scripts": {
"lint": "eslint src spec/*/*",
"pretest": "npm run lint",
"test": "browserify spec/boot.js -t babelify -o spec/boot.build.js && phantomjs ./node_modules/mocha-phantomjs-core/mocha-phantomjs-core.js spec/runner.html spec \"{\\\"useColors\\\":true}\"",
"test-browsers": "NODE_ENV=production zuul -- spec/boot.js",
"test-server": "zuul --local 3000 -- spec/boot.js",
"build": "npm run build:lib & npm run build:dist",
"prebuild:lib": "rm -rf lib && mkdir -p lib",
"build:lib": "rollup -c configs/rollup.lib.js && cp src/vidom.d.ts lib",
"prebuild:dist": "rm -rf dist && mkdir -p dist",
"build:dist": "rollup -c configs/rollup.dist.js & NODE_ENV=production rollup -c configs/rollup.dist.js",
"debug-server": "webpack-dev-server --config debug/webpack.debug.config.js --progress --colors --port 3000",
"demo-server": "webpack-dev-server --config demo/webpack.demo.config.js --progress --colors --port 3000",
"playground-server": "webpack-dev-server --config playground/webpack.config.js --progress --colors --port 3000",
"deploy-playground": "./scripts/deployPlayground.sh",
"release": "node scripts/release"
},
"dependencies": {
"csstype": "3.0.7"
}
}