-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 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
{
"name": "dable",
"version": "1.2.1",
"homepage": "https://github.com/deltreey/Dable",
"author": "deltreey <[email protected]>",
"description": "Dable (pronounced 'dabble') is a simple javascript table control with filtering, sorting, paging, styles, and more!",
"main": "Dable.js",
"scripts": {
"clean": "rimraf lib/*",
"prebuild": "npm run eslint && npm run clean",
"build": "npm run rollup",
"postbuild": "npm run uglify && npm run qunit",
"eslint": "eslint .",
"qunit": "node-qunit-phantomjs test/test.html",
"rollup": "rollup -c",
"test": "npm run build",
"uglify": "npm run uglify:umd",
"uglify:umd": "uglifyjs ./lib/dable.js -c -m -b -o ./lib/dable.min.js --comments /^!/ --ie8 --toplevel"
},
"repository": {
"type": "git",
"url": "https://github.com/deltreey/Dable.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/deltreey/Dable/issues"
},
"devDependencies": {
"bower": "^1.8.0",
"eslint": "^3.19.0",
"node-qunit-phantomjs": "^1.5.0",
"qunitjs": "^1.23.1",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"uglify-js": "^3.0.7"
}
}