-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 808 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 808 Bytes
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
{
"name": "tabledjs",
"version": "1.0.0",
"description": "Data-driven HTML tables with vanilla JavaScript",
"main": "dist/tabled.min.js",
"dependencies": {},
"devDependencies": {
"chai": "^3.4.1",
"mocha": "^2.3.4",
"mocha-phantomjs": "^4.0.1",
"watch-run": "^1.2.4"
},
"scripts": {
"test": "mocha-phantomjs spec/headless.html",
"minify": "uglifyjs --output dist/tabled.min.js tabled.js",
"watch": "watch-run -i \"npm test\" spec tabled.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/divmgl/tabled.git"
},
"keywords": [
"html",
"table"
],
"author": "Dexter Miguel",
"license": "MIT",
"bugs": {
"url": "https://github.com/divmgl/tabled/issues"
},
"homepage": "https://github.com/divmgl/tabled#readme"
}