-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.82 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.82 KB
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
{
"name": "bigchaindb-graphql",
"version": "1.0.2",
"main": "./dist/node/index.js",
"browser": "./dist/browser/bigchaindb-graphql.cjs2.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bigchaindb/js-bigchaindb-graphql.git"
},
"license": "Apache-2.0",
"dependencies": {
"bigchaindb-driver": "^4.1.0",
"bip39": "^2.5.0",
"graphql": "^0.13.2",
"graphql-type-json": "^0.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^5.2.0",
"eslint": "^4.13.1",
"eslint-config-ascribe": "^3.0.5",
"eslint-plugin-import": "^2.8.0",
"release-it": "^7.5.0",
"rimraf": "^2.6.2",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8",
"webpack-concat-plugin": "^3.0.0",
"webpack-merge": "^4.1.3",
"webpack-sources": "^1.1.0"
},
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js ./src",
"build": "npm run clean && npm run build:cjs && npm run build:dist",
"build:bundle": "webpack",
"build:cjs": "cross-env BABEL_ENV=cjs babel ./src -d dist/node",
"build:dist": "cross-env NODE_ENV=production webpack -p",
"clean": "rimraf dist/bundle dist/node",
"test": "npm run lint && ./node_modules/babel-cli/bin/babel-node.js ./test/queries.js",
"prepublishOnly": "npm run build",
"release": "./node_modules/release-it/bin/release-it.js --src.tagName='v%s' --github.release --npm.publish --non-interactive",
"release-minor": "./node_modules/release-it/bin/release-it.js minor --src.tagName='v%s' --github.release --npm.publish --non-interactive",
"release-major": "./node_modules/release-it/bin/release-it.js major --src.tagName='v%s' --github.release --npm.publish --non-interactive"
}
}