-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
73 lines (73 loc) · 2.05 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "angular-downloadsvg-directive",
"version": "0.2.0",
"description": "AngularJS directive to download SVGs",
"keywords": [
"angularjs",
"svg",
"FileSaver",
"directive"
],
"main": "lib/angular-downloadsvg-directive.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"browserify": "browserify ./lib/angular-downloadsvg-directive.js -o angular-downloadsvg-directive.js",
"uglify": "uglifyjs angular-downloadsvg-directive.js -o angular-downloadsvg-directive.min.js",
"build": "npm run browserify && npm run uglify && grunt ngdocs",
"lint": "xo ./lib/",
"start": "npm run build && grunt serve",
"check": "npm run lint && dependency-check package.json --entry lib/angular-downloadsvg-directive.js",
"version": "chg release -y && git add -A CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git://github.com/Hypercubed/angular-downloadsvg-directive.git"
},
"author": "Hypercubed <hypercubed@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hypercubed/angular-downloadsvg-directive/issues"
},
"homepage": "https://github.com/Hypercubed/angular-downloadsvg-directive",
"devDependencies": {
"browserify": "^13.1.0",
"chg": "^0.3.2",
"dependency-check": "^2.5.1",
"grunt": "^1.0.1",
"grunt-bump": "^0.8.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-watch": "^1.0.0",
"grunt-gh-pages": "^2.0.0",
"grunt-ngdocs": "^0.2.5",
"load-grunt-tasks": "^3.5.2",
"uglifyjs": "^2.4.10",
"xo": "^0.16.0"
},
"dependencies": {
"svgsaver": "^0.6.1"
},
"xo": {
"semicolon": true,
"esnext": false,
"space": 2,
"envs": [
"node",
"browser"
],
"plugins": [],
"rules": {
"space-before-function-paren": [
2,
{
"anonymous": "always",
"named": "always"
}
],
"ava/no-skip-test": 0,
"ava/no-ignored-test-files": 0,
"ava/test-ended": 0,
"ava/use-t-well": 0,
"ava/no-unknown-modifiers": 0
}
}
}