-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
53 lines (53 loc) · 1.72 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
{
"name": "angular-cached-resource",
"version": "1.5.0",
"description": "An AngularJS module to interact with RESTful resources, even when browser is offline",
"author": "Max Edmands <[email protected]>",
"contributors": [
"Max Edmands",
"Michael Kebbekus",
"Jacek Tomaszewski",
"Aaron Borden",
"Sherman Mui",
"Danny Nelson"
],
"repository": {
"type": "git",
"url": "git://github.com/goodeggs/angular-cached-resource.git"
},
"homepage": "https://github.com/goodeggs/angular-cached-resource",
"bugs": "https://github.com/goodeggs/angular-cached-resource/issues",
"devDependencies": {
"bower": "^1.3.12",
"browserify": "^8.0.3",
"coffee-script": ">=1.7.x",
"coffeeify": "^1.0.0",
"karma": "^0.12.16",
"karma-browserify": "^0.2.1",
"karma-chrome-launcher": "^0.1.4",
"karma-coffee-preprocessor": "^0.1.3",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.1.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-safari-launcher": "^0.1.1",
"karma-sinon-chai": "^0.1.5",
"mocha": "^2.5.3",
"phantomjs-prebuilt": "^2.1.7",
"sinon": "^1.17.4",
"uglify-js": "^2.4.12"
},
"main": "lib/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"always-auth": true
},
"scripts": {
"test": "./node_modules/karma/bin/karma start ./karma.full.conf.coffee",
"prepublish": "bower -sj install",
"compile": "coffee --bare --compile --output lib/ src/",
"link": "browserify lib/index.js > angular-cached-resource.js",
"minify": "uglifyjs angular-cached-resource.js > angular-cached-resource.min.js",
"build": "npm run compile && npm run link && npm run minify",
"pretest": "npm run build"
}
}