forked from CodeChain-io/foundry-primitives-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.09 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
{
"name": "foundry-primitives-xchainjs",
"version": "0.2.1",
"description": "JavaScript classes for Foundry primitives",
"engines": {
"node": ">=8"
},
"main": "./lib/index.js",
"typings": "./lib/index.d.js",
"files": [
"lib"
],
"scripts": {
"lint": "tslint -p . && prettier '{src,test}/**/*.{ts,js,json}' -l",
"fmt": "tslint -p . --fix && prettier '{src,test}/**/*.{ts,js,json}' --write",
"build": "tsc -p .",
"test": "jest --env node",
"pretest": "yarn build",
"posttest": "yarn lint",
"codecov": "node_modules/.bin/remap-istanbul -i coverage/coverage-final.json -o coverage/coverage-remapped.json && codecov -f coverage/coverage-remapped.json",
"docs": "yarn typedoc --out gh-pages/$npm_package_version --name \"foundry-primitives-js $npm_package_version\" --theme minimal --mode file",
"docs:prepare": "[ -d 'gh-pages' ] || git clone -b gh-pages git@github.com:CodeChain-io/foundry-primitives-js.git gh-pages && cd gh-pages && git pull"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeChain-io/foundry-primitives-js.git"
},
"keywords": [
"CodeChain",
"Foundry"
],
"author": "CodeChain Team <hi@codechain.io>",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodeChain-io/foundry-primitives-js/issues"
},
"homepage": "https://github.com/CodeChain-io/foundry-primitives-js#readme",
"devDependencies": {
"@types/crypto-js": "4.1.3",
"@types/jest": "^23.3.2",
"@types/lodash": "^4.14.116",
"@types/node": "^10.10.0",
"@types/node-forge": "^1.3.2",
"jest": "^23.6.0",
"prettier": "1.14.2",
"remap-istanbul": "^0.12.0",
"ts-jest": "^23.1.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typedoc": "^0.12.0",
"typescript": "^5.0.4"
},
"dependencies": {
"bignumber.js": "^7.2.1",
"blakejs": "^1.1.0",
"bn.js": "^4.11.8",
"buffer": "^5.2.1",
"crypto-js": "4.2.0",
"elliptic": "^6.4.1",
"hmac-drbg": "^1.0.1",
"lodash": "^4.17.21",
"node-forge": "^1.3.1",
"rlp": "^2.1.0",
"tweetnacl": "^1.0.3"
}
}