-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 976 Bytes
/
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
{
"name": "we-table",
"version": "0.0.3",
"description": "A table builder which is able to graft row from row",
"main": "dist/weTable.js",
"scripts": {
"build": "rollup -c",
"build:es6": "rollup src/index.js -f cjs -o dist/weTable.es6.js",
"watch": "rollup -c -w",
"pro": "NODE_ENV=production rollup -c",
"update": "npm run build:es6 && npm run build && npm run pro",
"doc": "./node_modules/.bin/jsdoc2md -t template.md -f src/*.js > README.md"
},
"repository": "[email protected]:weiying-shenzhen/weTable.git",
"keywords": [
"table",
"builder",
"html"
],
"author": "henryluki <[email protected]>",
"license": "MIT",
"devDependencies": {
"jsdoc-to-markdown": "^3.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-latest": "^6.24.1",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2"
}
}