forked from goodeggs/angular-cached-resource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.64 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
{
"name": "angular-cached-resource",
"version": "1.4.2",
"description": "An AngularJS module to interact with RESTful resources, even when browser is offline",
"author": "Max Edmands <max@goodeggs.com>",
"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": {
"coffee-script": ">=1.7.x",
"bower": "^1.3.12",
"browserify": "^8.0.3",
"coffeeify": "^1.0.0",
"uglify-js": "^2.4.12",
"karma": "^0.12.16",
"karma-coffee-preprocessor": "^0.1.3",
"karma-phantomjs-launcher": "^0.1.2",
"karma-mocha": "^0.1.1",
"karma-sinon-chai": "^0.1.5",
"karma-browserify": "^0.2.1",
"karma-chrome-launcher": "^0.1.4",
"karma-firefox-launcher": "^0.1.3",
"karma-safari-launcher": "^0.1.1"
},
"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"
}
}