-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.6 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.6 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
{
"name": "popojs",
"title": "PoPo",
"version": "1.4.1",
"description": "PoPo is the grid layout tool, the best choice for runtime layout.",
"main": "dist/popo.src.js",
"browser": "dist/popo.min.js",
"module": "dist/popo.esm.js",
"jsnext:main": "dist/popo.esm.js",
"scripts": {
"build": "rimraf dist/**/* && npm run es && rollup -c ./build/rollup.dev.config.js && rollup -c ./build/rollup.prod.config.js && gulp copy2ex",
"es": "rollup -c ./build/rollup.prod.es.js",
"test": "gulp test",
"release": "npm run build && npm run test",
"dev": "rollup -c ./build/rollup.dev.config.js -w"
},
"devDependencies": {
"babel-preset-es2015-rollup": "^3.0.0",
"eslint": "^5.6.0",
"expect.js": "^0.3.1",
"gulp": "^3.9.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-safari-launcher": "^1.0.0",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.2",
"rollup-watch": "^3.2.2",
"sinon": "^6.3.3"
},
"repository": {
"type": "git",
"url": "git://github.com/shunok/PoPo.git"
},
"keywords": [
"popo",
"grid",
"layout",
"data visualization",
"栅格",
"布局",
"可视化"
],
"author": {
"email": "dashunok@qq.com",
"name": "DaShun"
},
"license": "MIT",
"dependencies": {}
}