forked from graphql-extended/gqlx-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.64 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
{
"name": "gqlx-js",
"description": "GraphQL eXtended language and tools library for Node.js / JS applications.",
"version": "0.2.7",
"main": "dist",
"types": "dist",
"license": "MIT",
"scripts": {
"start": "ts-node src/example.ts",
"test:unit": "jest src",
"test": "npm run lint && npm run test:unit",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prettier": "prettier --config prettier.config.js --write 'src/**/*.ts'",
"bundle": "browserify dist/bundle.js -o dist/bundle.js -s 'gqlx'",
"compile": "tsc --project tsconfig.json",
"minify": "uglifyjs dist/bundle.js > dist/bundle.min.js",
"build": "npm run compile -- -target es5 && npm run bundle && npm run minify && npm run compile"
},
"engines": {
"node": ">=8.0.0"
},
"author": "graphql-extended <[email protected]>",
"browser": {
"fs": false
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@types/acorn": "^4.0.5",
"@types/graphql": "^14.2.2",
"@types/jest": "^24.0.15",
"@types/node": "^11.13.15",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"graphql": "^14.4.1",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"regenerator-runtime": "^0.13.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^2.9.2",
"uglify-js": "^3.6.0"
},
"peerDependencies": {
"graphql": "14.x || 0.13.x || 0.12.x || 0.11.x || 0.10.x"
},
"dependencies": {
"acorn": "^6.1.1",
"acorn-walk": "^6.1.1"
}
}