-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.67 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
{
"name": "@kv-orm/cf-workers",
"version": "2.0.1",
"description": "A Cloudflare Workers KV datastore plugin for kv-orm",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"clean": "rimraf dist/",
"clean:node": "rimraf package-lock.json node_modules/",
"build": "tsc",
"lint": "prettier -c 'src/**/*.ts' 'README.md'",
"lint:fix": "prettier --write 'src/**/*.ts' 'README.md'"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "git@github.com:kv-orm/cf-workers.git"
},
"keywords": [
"kv-orm",
"cloudflare",
"datastore",
"workers",
"cf-workers"
],
"author": {
"name": "Greg Brimble",
"email": "developer@gregbrimble.com",
"url": "https://gregbrimble.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kv-orm/cf-workers/issues"
},
"homepage": "https://github.com/kv-orm/cf-workers#readme",
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"@cloudflare/workers-types": "1.0.9",
"@dollarshaveclub/cloudworker": "0.1.2",
"@kv-orm/core": "0.1.0",
"@types/jest": "25.2.1",
"babel-jest": "26.0.1",
"husky": "4.2.5",
"jest": "26.0.1",
"npm-check-updates": "4.1.2",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"ts-jest": "25.5.0",
"typescript": "3.8.3"
},
"peerDependencies": {
"@kv-orm/core": "0.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint || (npm run lint:fix && npm run lint)",
"pre-push": "npm test"
}
}
}