forked from FreeWillaert/ApiExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.12 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
{
"name": "ApiExplorer",
"version": "0.1.0",
"description": "UI for CAPI.",
"repository" :
{
"type" : "git",
"url" : "https://github.com/janrain/ApiExplorer.git"
},
"main": "index.js",
"scripts": {
"watchtest": "karma start --browsers PhantomJS",
"test": "karma start --browsers PhantomJS --singleRun true",
"buildjs": "browserify -t [ browserify-ngannotate --add ] src/main.js | sed \"s/[\\\"']ngInject[\\\"'];*//g\" > public/bundle.js",
"compilejs": "java -jar ./node_modules/google-closure-compiler/compiler.jar --js public/bundle.js --js_output_file public/bundle-min.js --jscomp_off=misplacedTypeAnnotation",
"buildcss": "node-sass --recursive --output public --output-style compressed styles/*.sass",
"build": "npm run buildjs && npm run compilejs && npm run buildcss",
"start": "http-server public -p 8033 -o"
},
"author": "",
"license": "MIT",
"dependencies": {
"angular": "^1.4.8",
"angular-breadcrumb": "^0.4.1",
"angular-drag-and-drop-lists": "^1.3.2",
"angular-loading-bar": "^0.8.0",
"angular-resource": "^1.4.8",
"angular-sanitize": "^1.4.8",
"angular-toarrayfilter": "^1.0.1",
"angular-ui-bootstrap": "^0.14.3",
"angular-ui-router": "^0.2.15",
"bootstrap": "^3.3.6",
"browserify": "^12.0.1",
"browserify-ngannotate": "^2.0.0",
"file-saver": "^1.3.0",
"google-closure-compiler": "^20151216.1.0",
"http-server": "^0.9.0",
"jquery": "^2.2.4",
"jszip": "^3.0.0",
"less": "^2.5.3",
"lodash": "^3.10.1",
"ng-file-upload": "^12.0.4",
"node-sass": "^3.7.0"
},
"devDependencies": {
"angular-mocks": "^1.4.8",
"browserify-istanbul": "^0.2.1",
"chai": "^3.4.1",
"coveralls": "^2.11.9",
"karma": "^0.13.16",
"karma-browserify": "^4.4.2",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.4",
"karma-phantomjs-launcher": "^0.2.2",
"karma-sinon-chai": "^1.1.0",
"mocha": "^2.3.4",
"phantomjs": "^2.1.0",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
}
}