-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
140 lines (140 loc) · 3.92 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "pouchy",
"version": "14.0.0",
"description": "A simple, opinionated interface for the amazing PouchDB",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"docs:build": "typedoc --name Pouchy --exclude '**/__test__/**,**/browser/**' --readme ./readme.md --out docs/ src/",
"predocs:build": "rm -rf docs",
"docs:publish": "gh-pages -d docs",
"lint-staged": "lint-staged",
"precommit": "run-p lint-staged snyk-protect",
"postpublish": "run-s docs:build docs:publish",
"preversion": "git checkout master && git pull",
"publish-major": "npm run preversion && npm version major && git push origin master --tags && npm publish",
"publish-minor": "npm run preversion && npm version minor && git push origin master --tags && npm publish",
"publish-patch": "npm run preversion && npm version patch && git push origin master --tags && npm publish",
"semantic-release": "semantic-release",
"snyk-protect": "snyk protect",
"test:browser": "testem ci -P 10",
"test:node": "BLUEBIRD_WARNINGS=0 nyc -x '**/__test__/**' --reporter=lcov --check-coverage --functions=90 --branches=80 node build/__test__/node",
"test": "npm-run-all -p test:*",
"format": "prettier-standard '{src,test,scripts}/**/*.{js,jsx,ts,tsx}'",
"lint": "standardx '{src,test,scripts}/**/*.{js,jsx,ts,tsx}' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdaringe/pouchy.git"
},
"keywords": [
"pouchdb",
"pouch",
"wrapper",
"api"
],
"author": "cdaringe",
"license": "MIT",
"bugs": {
"url": "https://github.com/cdaringe/pouchy/issues"
},
"homepage": "https://github.com/cdaringe/pouchy#readme",
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.14.7",
"@types/blue-tape": "0.1.33",
"@types/bluebird": "3.5.36",
"@types/fs-extra": "9.0.12",
"@types/lodash": "4.14.171",
"@types/pouchdb": "6.4.0",
"@types/pouchdb-adapter-leveldb": "6.1.3",
"@types/tape": "4.13.1",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"babelify": "10.0.0",
"blue-tape": "1.0.0",
"browserify": "17.0.0",
"coveralls": "3.1.1",
"eslint-plugin-typescript": "0.14.0",
"fs-extra": "10.0.0",
"gh-pages": "3.2.3",
"husky": "7.0.1",
"jsdock": "1.0.4",
"lint-staged": "11.0.0",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"perish": "1.0.3",
"pouchdb-adapter-leveldb": "7.2.2",
"pouchdb-adapter-memory": "7.2.2",
"pouchdb-adapter-websql": "7.0.0",
"prettier-standard": "16.4.1",
"semantic-release": "17.4.4",
"snyk": "1.657.0",
"spawn-pouchdb-server": "3.3.3",
"standardx": "7.0.0",
"tape": "5.2.2",
"testem": "3.4.2",
"typedoc": "0.21.2",
"typedoc-plugin-external-module-name": "4.0.6",
"typescript": "4.3.5"
},
"dependencies": {
"bluebird": "^3.5.3",
"lodash": "^4.17.4",
"path": "0.12.7",
"pouchdb-adapter-http": "^7.0.0",
"pouchdb-core": "^7.0.0",
"pouchdb-find": "^7.0.0",
"pouchdb-replication": "^7.0.0",
"url": "0.11.0"
},
"browser": {
"perish": "./build/browser/perish.js",
"path": "./build/browser/path.js"
},
"snyk": true,
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"{src,test,scripts}/**/*.{js,jsx,ts,tsx}": [
"npm run format",
"git add"
]
},
"standardzzz": {
"parser": "typescript-eslint-parser",
"plugins": [
"typescript"
],
"ignore": [
"build",
"bundle.js"
]
},
"eslintConfig": {
"rules": {
"no-unused-vars": 0
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"ignore": [
"**/*.d.ts"
]
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/__test__/**"
]
}
}