forked from brunoti/table-link
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "table-link",
"version": "1.2.7",
"description": "A simple way to add links on your tableish elements like tr, th and td.",
"main": "src/TableLink.js",
"scripts": {
"build": "npm run build-js && npm run build-min",
"build-js": "browserify ./src/TableLink.js -s TableLink -o ./table-link.js",
"watch": "watchify ./src/TableLink.js -s TableLink -o ./table-link.js",
"build-min": "uglifyjs ./table-link.js -o ./table-link.min.js",
"test": "nyc ava -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brunoti/table-link.git"
},
"keywords": [
"table",
"link",
"datatable"
],
"author": "Bruno Oliveira <[email protected]> (https://github.com/brunoti)",
"license": "MIT",
"bugs": {
"url": "https://github.com/brunoti/table-link/issues"
},
"homepage": "https://github.com/brunoti/table-link#readme",
"dependencies": {
"component-matches-selector": "^0.1.6",
"delegate": "^3.0.1"
},
"devDependencies": {
"ava": "^0.16.0",
"browserify": "^13.0.0",
"coveralls": "^2.11.14",
"jsdom": "^9.5.0",
"node-browser-environment": "^2.0.6",
"nyc": "^8.3.0",
"simulant": "^0.2.2",
"sinon": "^1.17.6",
"uglify-js": "^3.4.9",
"watchify": "^3.7.0"
},
"ava": {
"files": [
"test/**/*.js"
],
"source": [
"src/**/*"
],
"require": [
"./test/helpers/browser-mock.js"
]
}
}