-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
44 lines (44 loc) · 1.52 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
{
"name": "angular-responsive-tables",
"version": "0.4.4",
"description": "Make your HTML tables look great on every device",
"main": "release/angular-responsive-tables.js",
"files": [
"release/"
],
"scripts": {
"build": "./node_modules/.bin/uglifyjs src/directive.js src/module.js -b -e --preamble \"// https://github.com/awerlang/angular-responsive-tables\" -o release/angular-responsive-tables.js",
"release": "./node_modules/.bin/uglifyjs src/directive.js src/module.js -c -e --preamble \"// https://github.com/awerlang/angular-responsive-tables\" -o release/angular-responsive-tables.min.js",
"css": "type src\\style.css > release\\angular-responsive-tables.css",
"cssmin": "type src\\style.css | \"./node_modules/.bin/cleancss\" -o release\\angular-responsive-tables.min.css",
"test": "karma start --single-run"
},
"repository": {
"type": "git",
"url": "https://github.com/awerlang/angular-responsive-tables.git"
},
"keywords": [
"angular",
"angularjs",
"table",
"tables",
"responsive",
"adaptive",
"mobile"
],
"author": "André Werlang",
"license": "MIT",
"bugs": {
"url": "https://github.com/awerlang/angular-responsive-tables/issues"
},
"homepage": "https://github.com/awerlang/angular-responsive-tables",
"devDependencies": {
"clean-css": "^3.2.10",
"conventional-changelog": "0.0.17",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"uglify-js": "^2.4.20"
}
}