-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.4 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
{
"name": "ng-xhr-promisify",
"version": "1.1.4",
"description": "Wrap XMLHttpRequest in an angular $http-like promise",
"main": "dist/ng-xhr-promisify.js",
"jsnext:main": "dist/ng-xhr-promisify.es.js",
"homepage": "https://github.com/tiago/ng-xhr-promisify",
"repository": {
"type": "git",
"url": "https://github.com/tiago/ng-xhr-promisify.git"
},
"bugs": {
"url": "https://github.com/tiago/ng-xhr-promisify/issues"
},
"scripts": {
"lint": "gulp lint",
"build": "gulp build",
"prerelease": "npm run build",
"release": "gulp release"
},
"author": "Tiago Oliveira",
"license": "MIT",
"keywords": [
"angular",
"xhr",
"xmlhttprequest",
"promise",
"$http"
],
"dependencies": {
"angular": "^1.2.0"
},
"devDependencies": {
"del": "^2.2.1",
"event-stream": "3.3.4",
"gulp": "^3.9.1",
"gulp-bump": "^2.4.0",
"gulp-eslint": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.0.0-alpha",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"inquirer": "^1.1.2",
"rollup-plugin-buble": "^0.13.0",
"rollup-stream": "^1.11.0",
"run-sequence": "^1.2.2",
"semver": "^5.3.0",
"shelljs": "^0.7.3",
"uglify-js": "^2.7.0",
"vinyl-source-stream": "^1.1.0"
},
"files": [
"dist/*",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"engines": {
"node": ">=4.0.0"
}
}