forked from interledgerjs/five-bells-condition
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
138 lines (138 loc) · 3.91 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "crypto-conditions",
"version": "2.1.3",
"description": "Implementation of crypto-conditions in JavaScript",
"main": "./dist/node/index.js",
"browser": "./dist/browser/CryptoConditions.cjs2.min.js",
"types": "./types/index.d.ts",
"directories": {
"test": "test"
},
"files": [
"dist",
"schemas",
"types"
],
"dependencies": {
"asn1.js": "5.4.1",
"tweetnacl": "^1.0.3"
},
"optionalDependencies": {
"ed25519": "0.0.5"
},
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.2",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/runtime-corejs3": "^7.17.2",
"babel-loader": "^8.2.2",
"buffer": "^6.0.3",
"chai": "^4.3.3",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"crypto-browserify": "^3.12.0",
"cz-conventional-changelog": "^3.3.0",
"do-you-even-bench": "^1.0.5",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.4",
"interledger-jsdoc-template": "^2.0.0",
"jsdoc": "^3.6.6",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"lint-staged": "^12.3.4",
"md-toc-filter": "^0.9.0",
"mocha": "^9.2.0",
"mustache": "^4.2.0",
"nyc": "^15.1.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"puppeteer": "^13.3.0",
"querystring-es3": "^0.2.1",
"release-it": "^14.12.4",
"rimraf": "^3.0.2",
"sinon": "^6.1.5",
"stream-browserify": "^3.0.0",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0",
"webpack-sources": "^3.2.3"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"build": "npm run clean && npm run build:cjs && npm run build:dist",
"build:web": "webpack --mode production --config webpack.config.js",
"prepublish": "npm run build:web",
"build:bundle": "webpack",
"build:cjs": "cross-env BABEL_ENV=cjs babel ./src -d dist/node",
"build:dist": "cross-env NODE_ENV=production webpack",
"clean": "rimraf dist/bundle dist/browser dist/node",
"test:specs": "NODE_ENV=unit nyc mocha",
"test:browser": "karma start --single-run",
"test": "npm run test:specs && npm run test:browser",
"docs:jsdoc": "jsdoc -R README.md -c jsdoc.json src/*",
"docs:toc": "md-toc-filter docs/README.template.md > README.md",
"docs": "npm run docs:toc",
"prepublishOnly": "npm run build",
"release": "read -p 'GITHUB_TOKEN: ' GITHUB_TOKEN && export GITHUB_TOKEN=$GITHUB_TOKEN && release-it --src.tagName='v%s'",
"release-minor": "release-it minor --src.tagName='v%s' --non-interactive",
"release-major": "release-it major --src.tagName='v%s' --non-interactive"
},
"repository": {
"type": "git",
"url": "git@github.com:bigchaindb/js-crypto-conditions"
},
"keywords": [
"cryptographic",
"condition",
"fulfillment",
"interledger",
"payment",
"assured",
"escrow"
],
"author": "Ripple <info@ripple.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bigchaindb/js-crypto-conditions/issues"
},
"homepage": "https://github.com/bigchaindb/js-crypto-conditions",
"lint-staged": {
"*.js": [
"eslint"
]
},
"release-it": {
"github": {
"release": true
},
"git": {
"tagName": "v${version}"
},
"hooks": {
"before:init": [
"npm run test"
]
},
"npm": {
"publish": true
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}