forked from pouchdb-community/pouchdb-authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.37 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "pouchdb-authentication",
"version": "1.1.3",
"description": "PouchDB Authentication",
"keywords": [
"pouch",
"pouchdb",
"authentication",
"couch",
"couchdb"
],
"bugs": {
"url": "https://github.com/pouchdb-community/pouchdb-authentication/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Nolan Lawson",
"email": "[email protected]",
"url": "https://nolanlawson.com/"
},
"contributors": [
{
"name": "Didier Villevalois",
"email": "[email protected]"
}
],
"files": [
"dist",
"lib",
"types/index.d.ts"
],
"main": "lib/index.js",
"jsnext:main": "lib/index.es.js",
"module": "lib/index.es.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:pouchdb-community/pouchdb-authentication.git"
},
"scripts": {
"clean": "rimraf lib dist && mkdirp lib dist",
"rollup-cjs": "rollup -c config/rollup.config.cjs.js && rollup -c config/rollup.config.browser.cjs.js",
"rollup-es": "rollup -c config/rollup.config.es.js && rollup -c config/rollup.config.browser.es.js",
"rollup": "npm-run-all --parallel rollup-cjs rollup-es",
"browserify": "browserify -t brfs -p bundle-collapser/plugin -s PouchAuthentication lib/index.browser.js > dist/pouchdb.authentication.js",
"minify": "uglifyjs -mc < dist/pouchdb.authentication.js > dist/pouchdb.authentication.min.js",
"build": "npm-run-all clean rollup browserify minify",
"prepublishOnly": "npm run build",
"lint": "eslint bin/ src/ test/",
"dev": "npm run test-local",
"test": "npm run rollup-cjs && node bin/run-test.js",
"test-local": "CLIENT=local npm run test",
"test-node": "CLIENT=node npm run test",
"test-phantom": "CLIENT=phantom npm run test",
"test-types": "tsc --noEmit -p types",
"release": "standard-version"
},
"dependencies": {
"inherits": "2.0.3",
"pouchdb-ajax": "~6.4.0",
"pouchdb-binary-utils": "~6.4.0",
"pouchdb-promise": "~6.4.0",
"pouchdb-utils": "~6.4.0",
"url-join": "4.0.0",
"url-parse": "1.4.3"
},
"devDependencies": {
"@types/pouchdb-core": "^6.1.9",
"add-cors-to-couchdb": "0.0.6",
"brfs": "^1.4.3",
"browserify": "^16.1.0",
"bundle-collapser": "^1.3.0",
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"eslint": "^4.6.1",
"istanbul": "^0.4.5",
"karma": "^2.0.0",
"karma-browserify": "^5.1.2",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sauce-launcher": "^1.2.0",
"mkdirp": "^0.5.1",
"mocha": "^5.0.0",
"npm-run-all": "^3.1.2",
"pouchdb-memory": "^6.0.0",
"pouchdb-server": "^4.0.0",
"rimraf": "^2.5.4",
"rollup": "^0.57.1",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-inject": "^2.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"standard-version": "^4.2.0",
"typescript": "^2.6.2",
"uglify-js": "^3.1.9",
"watchify": "^3.9.0"
},
"// greenkeeper": [
"// chai-as-promised is pinned because of breaking changes in 6.0.0 which make phantomjs crash"
],
"greenkeeper": {
"ignore": [
"chai-as-promised"
]
},
"standard-version": {
"scripts": {
"postbump": "git checkout -- bower.json"
}
}
}