-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "ng-json-prettifier",
"version": "0.0.6",
"description": "An Angular directive to prettify your Json items",
"main": "dist/ng-json-prettifier.min.js",
"repository": {
"type": "git",
"url": "https://github.com/arnauddri/ng-json-prettifier"
},
"scripts": {
"test": "./node_modules/karma/bin/karma start --single-run --no-auto-watch",
"minify": "uglifyjs --lint false -mc -o dist/ng-json-prettifier.min.js dist/ng-json-prettifier.js",
"cat": "cat src/directive.prefix src/directive.js src/directive.suffix > dist/ng-json-prettifier.js",
"build": "npm run cat && npm run minify"
},
"keywords": [
"json",
"prettify",
"pretty",
"ng-prettify",
"beautifier",
"uglifyjs",
"stringify",
"angular",
"angularjs"
],
"author": "arnauddri",
"license": "MIT",
"bugs": {
"url": "https://github.com/arnauddri/ng-pretty-json/issues"
},
"homepage": "https://github.com/arnauddri/ng-pretty-json",
"directories": {
"example": "example"
},
"devDependencies": {
"jasmine-core": "^2.1.3",
"karma-jasmine": "^0.3.4",
"karma-chrome-launcher": "^0.1.7",
"karma-firefox-launcher": "^0.1.4",
"karma": "^0.12.31"
}
}