-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 889 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 889 Bytes
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
{
"name": "@redux-model/graphql",
"version": "1.0.2",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "lib/index.d.ts",
"repository": "git@github.com:redux-model/graph.git",
"author": "范文华 <531362022@qq.com>",
"license": "MIT",
"scripts": {
"test": "nyc mocha ./tests/*.test.ts -r ts-node/register",
"prepublishOnly": "sh ./scripts/prepublish.sh"
},
"peerDependencies": {
"typescript": ">=4.1"
},
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"public-refactor": "^0.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"publishConfig": {
"access": "public",
"directory": "build"
},
"files": [
"lib",
"es",
"README.md",
"LICENSE",
"package.json"
]
}