-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 1.33 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
{
"name": "@xialvjun/tiny-graphql-client",
"version": "0.0.8",
"description":
"a tiny, simple and customable graphql client, only support `query` and `mutation` now.",
"repository": "github:xialvjun/tiny-graphql-client",
"keywords": ["graphql", "client", "simple", "tiny"],
"----------------": "----------------",
"peerDependencies": {},
"devDependencies": {
"rimraf": "^2.6.2",
"typescript": "^2.8.3"
},
"dependencies": {},
"================": "================",
"author": "[email protected]",
"license": "MIT",
"++++++++++++++++": "++++++++++++++++",
"files": ["src/", "es/", "lib/", "dist/", "types/"],
"-esnext": "esnext_source_code_not_ts",
"module": "es/index.js",
"main": "lib/index.js",
"-unpkg": "dist/index.js",
"-jsdelivr": "dist/index.js",
"types": "types/index.d.ts",
"################": "################",
"scripts": {
"build":
"npm run build:es && npm run build:lib && npm run build:dist && npm run build:types",
"build:es": "rimraf -r es && tsc --outDir es --module es6",
"build:lib": "rimraf -r lib && tsc --outDir lib --module commonjs",
"build:dist": "rimraf -r dist && echo not_implemented",
"build:types":
"rimraf -r types && tsc --outDir types --declaration --emitDeclarationOnly",
"test": "echo \"Error: no test specified\" && exit 1"
}
}