-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
64 lines (64 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
{
"name": "graphql-normalizr",
"version": "2.11.0",
"description": "Normalize GraphQL response",
"repository": {
"type": "git",
"url": "git+https://github.com/monojack/graphql-normalizr.git"
},
"keywords": [
"javascript",
"graphql",
"normalizr",
"normalizer"
],
"author": "Ionut Achim <[email protected]>",
"license": "MIT",
"main": "lib/graphql-normalizr.cjs.js",
"module": "esm/graphql-normalizr.esm.js",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.10",
"ava": "^3.14.0",
"eslint": "^7.15.0",
"eslint-config-mono": "^2.0.0",
"graphql": "^15.4.0",
"graphql-tag": "^2.11.0",
"rollup": "^2.34.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2"
},
"bugs": {
"url": "https://github.com/monojack/graphql-normalizr/issues"
},
"peerDependencies": {
"graphql": "^0.11.* || ^0.12.* || ^0.13.* || ^0.14.* || ^14.* || ^15.*"
},
"scripts": {
"rollup": "rollup -c",
"dev": "npm run build:esm -- -w",
"pretest": "npm run build:cjs",
"test": "ava --verbose --serial",
"build:esm": "rollup -c rollup.config.esm.js",
"build:cjs": "rollup -c rollup.config.cjs.js",
"build": "npm run rollup",
"prepare": "npm run clean && npm run build",
"clean": "rimraf lib esm dist"
},
"ava": {
"files": [
"test/*.js",
"!test/mocks/**"
]
},
"npmName": "graphql-normalizr",
"files": [
"dist",
"esm",
"lib"
]
}