-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "subchain",
"version": "0.1.1",
"description": "Local Blockchain",
"main": "dist/index.js",
"scripts": {
"compile": "npm run lint && npm run clean && tsc -p .",
"test": "npm run compile && nyc mocha --require source-map-support/register --recursive dist",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "tslint --project tsconfig.json -c tslint.json",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/subchain.git"
},
"author": "Simon Schönfeld <wtf@lnqs.io>",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.11",
"msgpack": "^1.0.2"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/lodash": "^4.14.117",
"@types/mocha": "^5.2.5",
"@types/msgpack": "0.0.30",
"@types/node": "^10.11.7",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.0.1",
"source-map-support": "^0.5.9",
"tslint": "^5.11.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^3.1.2"
}
}