-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.35 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.35 KB
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
{
"name": "ablsdk",
"version": "0.2.23",
"description": "",
"main": "main.js",
"directories": {
"test": "test"
},
"author": "Adam Ralko (github.com/aralko)",
"scripts": {
"build": "gulp scripts && uglifyjs ./dst/main.js --compress --mangle -o ./dst/main.min.js --source-map ./dst/main.min.js.map && cp ./dst/main.js main.js",
"test": "karma start karma.config.js",
"test-debug": "karma start karma.config.js --no-single-run --browsers Chrome",
"coveralls": "cp build/coverage/PhantomJS*/lcov.info lcov.info && node node_modules/coveralls/bin/coveralls.js < lcov.info",
"pull": "git checkout master && git pull origin master",
"push": "git push origin master --tags && npm publish",
"release": "release () { npm run pull && if [ -z $1 ]; then npm version patch; else npm version $1; fi && npm run push; }; release"
},
"dependencies": {
"angular": "^1.5.5",
"angular-mocks": "^1.5.5",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-livescript-preprocessor": "^0.1.0",
"livescript": "^1.5.0",
"minify": "^2.0.9"
},
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"coveralls": "^2.10.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-livescript": "^3.0.1",
"gulp-ng-annotate": "^2.0.0",
"html-loader": "^0.4.5",
"isparta-loader": "^2.0.0",
"jasmine-core": "^2.4.1",
"jshint-stylish": "^2.0.0",
"karma": "0.13.x",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "1.0.x",
"karma-htmlfile-reporter": "^0.2.2",
"karma-jasmine": "1.0.x",
"karma-junit-reporter": "2.0.x",
"karma-phantomjs-launcher": "1.0.x",
"karma-webpack": "^1.7.0",
"ng-annotate-loader": "^0.2.0",
"phantomjs-prebuilt": "2.1.x",
"socket.io": "^1.5.0",
"string-loader": "0.0.1",
"style-loader": "^0.16.1",
"uglify-js": "^2.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bucket-list/abl-sdk.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/bucket-list/abl-sdk/issues"
},
"homepage": "https://github.com/bucket-list/abl-sdk#readme"
}