This repository has been archived by the owner on Aug 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 3.01 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
{
"name": "parasprite",
"version": "1.0.0-beta.8",
"description": "Describe your GraphQL schema using chainable interface",
"main": "parasprite",
"author": "Nick K.",
"license": "MIT",
"engines": {
"node": ">= 8 < 9 || >= 10 < 11 || >= 12"
},
"repository": "octet-stream/parasprite",
"keywords": [
"graphql",
"wrapper",
"chains",
"schema"
],
"scripts": {
"make": "babel src -d .",
"watch": "babel src -w -d .",
"make:esm": "BABEL_ESM=1 babel src -d . --keep-file-extension",
"make:test": "babel src -s -d .",
"prepare": "npm run cleanup && npm run make && npm run make:esm",
"test": "ava",
"test:cleanup": "npm run cleanup && npm run make:test && ava && npm run cleanup && npm run prepare",
"m": "npm run make",
"w": "npm run watch",
"p": "npm run prepare",
"t": "npm run test",
"test:watch": "ava --watch",
"t:w": "npm run test:watch",
"cleanup": "rimraf helper lib test .map ..map *.map Input.js Interface.js Schema.js Type.js Enum.js Union.js parasprite.js toListType.js toRequired.js buildSchema.js Input.mjs Interface.mjs Schema.mjs Type.mjs Enum.mjs Union.mjs parasprite.mjs toListType.mjs toRequired.mjs buildSchema.mjs",
"staged": "lint-staged",
"eslint": "eslint src/**/*.mjs",
"coverage": "npm run cleanup && npm run make:test && nyc npm run test",
"report": "npm run cleanup && npm run make:test && nyc npm run test && nyc report -r=html",
"ci": "npm run make:test && nyc npm run test && nyc report -r=lcov && codecov"
},
"ava": {
"files": [
"test/**/*.js"
],
"helpers": [
"test/**/__hook__/**",
"test/**/__helper__/**",
"test/helper/**"
]
},
"nyc": {
"extension": [
".mjs"
],
"exclude": [
"test/**",
".babelrc.js"
]
},
"devDependencies": {
"@babel/cli": "7.5.0",
"@babel/core": "7.5.4",
"@babel/plugin-proposal-class-properties": "7.5.0",
"@babel/plugin-proposal-decorators": "7.4.4",
"@babel/plugin-proposal-export-default-from": "7.5.2",
"@babel/plugin-proposal-export-namespace-from": "7.5.2",
"@babel/plugin-proposal-object-rest-spread": "7.5.4",
"@babel/plugin-transform-async-to-generator": "7.5.0",
"@babel/plugin-transform-modules-commonjs": "7.5.0",
"@octetstream/eslint-config": "3.1.0",
"ava": "2.2.0",
"babel-eslint": "10.0.2",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-module-resolver": "3.2.0",
"codecov": "3.5.0",
"eslint": "6.0.1",
"eslint-import-resolver-babel-module": "5.1.0",
"eslint-plugin-ava": "7.1.0",
"graphql": "14.4.2",
"husky": "3.0.0",
"lint-staged": "9.2.0",
"nyc": "14.1.1",
"proxyquire": "^2.1.1",
"rimraf": "2.6.3",
"sinon": "7.3.2"
},
"peerDependencies": {
"graphql": "0.11.x || 0.12.x || 0.13.x || 14.x"
},
"dependencies": {
"@octetstream/invariant": "1.2.0",
"@octetstream/promisify": "2.0.2",
"lodash.isempty": "4.4.0",
"lodash.merge": "4.6.2",
"lodash.omitby": "4.6.0"
}
}