-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
91 lines (91 loc) · 3.11 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
{
"name": "bigchaindb-orm",
"version": "3.0.3",
"description": "A CRAB-based ORM for BigchainDB",
"homepage": "https://www.bigchaindb.com/",
"bugs": "https://github.com/bigchaindb/js-driver-orm/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/bigchaindb/js-driver-orm.git"
},
"license": "Apache-2.0",
"author": "BigchainDB",
"main": "./dist/node/index.js",
"browser": "./dist/browser/bigchaindb-orm.cjs2.min.js",
"dependencies": {
"bigchaindb-driver": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^0.3.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015-no-commonjs": "^0.0.2",
"babel-runtime": "^6.26.0",
"cowsay": "^1.3.1",
"cross-env": "^5.2.0",
"eslint": "^5.0.1",
"eslint-config-ascribe": "^3.0.5",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"nyc": "^12.0.1",
"release-it": "^7.4.8",
"rimraf": "^2.6.2",
"sinon": "^5.0.1",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.4"
},
"scripts": {
"lint": "eslint ./{src,test}/*.js",
"build": "npm run clean && npm run build:cjs && npm run build:dist",
"build:bundle": "cross-env NODE_ENV=production webpack",
"build:cjs": "cross-env BABEL_ENV=cjs babel ./src -d dist/node",
"build:dist": "cross-env NODE_ENV=production webpack --mode production",
"clean": "rimraf dist/bundle dist/node",
"test": "npm run lint && nyc ava test/ && npm run thanks && npm run report-coverage",
"thanks": "cowsay Hi, thanks for your interest in BigchainDB. We appreciate your contribution!",
"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",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov"
},
"keywords": [
"bigchaindb",
"driver",
"blockchain",
"decentralized",
"orm"
],
"ava": {
"files": [
"test/*.js"
],
"source": [
"**/*.{js,jsx}",
"!node_modules/**/*",
"!dist/**/*"
],
"failFast": true,
"failWithoutAssertions": false,
"tap": true,
"powerAssert": false,
"require": [
"babel-register",
"babel-polyfill"
],
"babel": "inherit"
}
}