-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.35 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
{
"name": "ng-cordova-pushwoosh",
"version": "0.0.1",
"description": "AngularJS module for using the Pushwoosh Cordova plugin",
"main": "dist/ng-cordova-pushwoosh.min.js",
"module": "src/pushwoosh.module.js",
"scripts": {
"build": "rollup -c",
"changes": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"lint": "eslint src/",
"preversion": "npm run lint && npm run changes && git add CHANGELOG.md",
"version": "npm run build && git add -A dist/",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rjelierse/ng-cordova-pushwoosh.git"
},
"keywords": [
"angular",
"cordova",
"ng-cordova",
"pushwoosh",
"pushwoosh-cordova-plugin"
],
"author": "Raymond Jelierse <info@raymondjelierse.nl>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rjelierse/ng-cordova-pushwoosh/issues"
},
"homepage": "https://github.com/rjelierse/ng-cordova-pushwoosh#readme",
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"conventional-changelog-cli": "^1.3.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.2.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-uglify": "^1.0.2"
},
"dependencies": {
"angular": "^1.4.0"
}
}