-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.52 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "ardor-api-wrapper",
"version": "1.0.0",
"description": "NPM package for interaction with ardor node",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.js",
"files": [
"dist/**/*"
],
"scripts": {
"setup": "npm install",
"build": "tsc",
"build-watch": "tsc --watch",
"test-only": "mocha dist/test/",
"pretest": "npm run build",
"test": "npm run test-only",
"clean": "shx rm -rf node_modules/ dist/ docs/",
"typedoc": "typedoc --out ./docs --mode modules --tsconfig ./tsconfig.json ./dev/src/",
"posttypedoc": "shx cp .nojekyll docs/.nojekyll",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArdorNxtCommunity/ardor-api-wrapper.git"
},
"keywords": [
"ardor",
"nxt",
"blockchain",
"decentralization",
"web3"
],
"author": "ArdorNxtCommunity",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArdorNxtCommunity/ardor-api-wrapper/issues"
},
"homepage": "https://github.com/ArdorNxtCommunity/ardor-api-wrapper#readme",
"devDependencies": {
"@types/mocha": "^5.2.6",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"rxjs": "^6.4.0",
"shx": "^0.3.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.14.2",
"typescript": "^3.3.3"
},
"dependencies": {
"@angular/common": "^7.2.5",
"@angular/core": "^7.2.5"
}
}