This repository has been archived by the owner on Oct 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.89 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "node",
"version": "1.0.0",
"description": "OfflineNoteTaker: An Ionic project",
"main": "dist/offlineNoteTaker.js",
"scripts": {
"annotate": "ng-annotate -a - > dist/offlineNoteTaker.js",
"prebuild": "rimraf dist && mkdirp dist",
"build": "npm --silent run wrap | npm run annotate",
"postbuild": "npm run uglify",
"coveralls": "coveralls < test/coverage/lcov/lcov.info",
"postinstall": "bower install",
"pretest": "eslint offlineNoteTaker.js karma.conf.js test/*.js",
"test": "karma start",
"watch": "karma start --autoWatch true --singleRun false",
"wrap": "catw prefix.js offlineNoteTaker.js suffix.js",
"uglify": "uglifyjs dist/offlineNoteTaker.js -mc > dist/offlineNoteTaker.min.js",
"presemantic-release": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"install": "napa"
},
"repository": {
"type": "git",
"url": "https://github.com/fchastanet/OfflineNoteTaker.git"
},
"keywords": [
"angular",
"pouchdb",
"ionic",
"cordova"
],
"author": "François Chastanet (http://francois.chastanet.free.fr/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fchastanet/OfflineNoteTaker/issues"
},
"homepage": "https://github.com/fchastanet/OfflineNoteTaker",
"dependencies": {
"angular": "~1.4.3",
"angular-animate": "~1.4.3",
"angular-elastic": "~2.5",
"angular-sanitize": "~1.4.3",
"angular-ui-router": "~0.2.13",
"jquery": "~2.1.0",
"moment": "~2.6.0",
"node-gyp": "^3.0.3",
"node-sass": "^3.4.2",
"pouchdb": "fchastanet/pouchdb#5.0.2",
"toastr": "CodeSeven/toastr#v3"
},
"devDependencies": {
"catw": "^1.0.1",
"coveralls": "^2.11.4",
"es5-shim": "^4.1.13",
"eslint": "^0.24.1",
"eslint-config-tlvince": "1.2.0",
"globby": "^4.0.0",
"gulp": "^3.5.6",
"gulp-concat": "^2.2.0",
"gulp-csso": "^1.0.1",
"gulp-manifest": "^0.1.0",
"gulp-ng-annotate": "^1.1.0",
"gulp-rename": "^1.2.0",
"gulp-replace": "^0.5.4",
"gulp-rework": "^1.1.0",
"gulp-sass": "^2.1.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.1",
"gulp-util": "^2.2.14",
"ionic": "^1.1.10",
"jasmine-core": "2.3.4",
"merge-stream": "^1.0.0",
"mkdirp": "^0.5.1",
"napa": "^2.0.2",
"ng-annotate": "^0.14.1",
"rework-plugin-url": "^1.1.0",
"rimraf": "^2.4.3",
"semantic-release": "^4.3.5",
"shelljs": "^0.3.0",
"through2": "^2.0.0",
"tlvince-blob-shim": "^1.0.0",
"uglify-js": "^2.4.24",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"cordovaPlugins": [
"cordova-plugin-device",
"cordova-plugin-console",
"cordova-plugin-whitelist",
"cordova-plugin-splashscreen",
"com.ionic.keyboard"
],
"cordovaPlatforms": [
"android"
],
"napa": {
"ionic-bower": "driftyco/ionic-bower#v1.1.1"
}
}