-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "@apollo-elements/rollup-plugin-graphql",
"version": "1.0.1",
"description": "Import GraphQL Documents in your Modules",
"main": "dist/rollup-plugin-graphql.cjs.js",
"module": "dist/rollup-plugin-graphql.es.js",
"typings": "src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/apollo-elements/rollup-plugin-graphql.git"
},
"files": [
"dist",
"src"
],
"keywords": [
"graphql",
"rollup",
"rollupjs"
],
"author": "Benny Powers <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apollo-elements/rollup-plugin-graphql/issues"
},
"homepage": "https://github.com/apollo-elements/rollup-plugin-graphql#readme",
"scripts": {
"test": "mocha --require ts-node/register --extensions ts 'test/*.test.ts'",
"watch": "tsc -w",
"build": "run-s build:*",
"build:tsc": "tsc",
"build:rollup": "rollup -c",
"prebuild": "rm -rf dist/*",
"prepublishOnly": "npm test && npm run build",
"lint": "eslint"
},
"dependencies": {
"@apollo-elements/graphql-mini-transforms": "^1.3.0",
"graphql-tag": "^2.11.0",
"rollup-pluginutils": "^2.8.2"
},
"devDependencies": {
"@pwrs/eslint-config": "0.0.10",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.2",
"chai": "^4.2.0",
"eslint": "^7.9.0",
"graphql": "^15.3.0",
"mocha": "^8.1.3",
"npm-run-all": "^4.1.5",
"rollup": "^2.28.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}