This repository has been archived by the owner on Aug 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 2.15 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
{
"name": "@chainsafe/ssz",
"version": "0.5.1",
"description": "Simple Serialize",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prebuild": "rm -rf lib && rm -rf dist",
"build": "yarn build-lib && yarn build-web && yarn build-types",
"build:docs": "typedoc --exclude src/index.ts,src/web.ts --out docs src",
"build-lib": "babel src -x .ts -d lib --source-maps",
"build-types": "tsc --incremental --declaration --outDir lib --emitDeclarationOnly",
"build-web": "webpack --mode production --entry ./lib/web.js --output ./dist/ssz.min.js",
"check-types": "tsc --incremental --noEmit",
"lint": "eslint --ext .ts src/ test/",
"pretest": "yarn check-types",
"prepublishOnly": "yarn build",
"test:spec": "nyc -r lcov -e .ts mocha --timeout 4000 -r ./.babel-register \"test/spec/**/*.test.ts\" && nyc report",
"test:unit": "nyc -r lcov -e .ts mocha -r ./.babel-register \"test/unit/**/*.test.ts\" && nyc report"
},
"homepage": "https://github.com/chainsafe/ssz-js",
"keywords": [
"ethereum",
"serenity",
"simple serialize",
"ssz"
],
"author": "ChainSafe Systems",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.0.0",
"@chainsafe/eth2.0-spec-test-util": "^0.3.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.17",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"chai": "^4.2.0",
"codecov": "^3.2.0",
"eslint": "^5.14.1",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"typedoc": "^0.14.2",
"typedoc-plugin-external-module-name": "^2.1.0",
"typescript": "^3.5.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"@chainsafe/bit-utils": "^0.1.3",
"@types/bn.js": "^4.11.4",
"assert": "^1.4.1",
"bcrypto": "^4.1.0",
"bn.js": "^4.11.8"
}
}