-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "symbol-uri-scheme",
"version": "0.6.2",
"description": "Symbol library to handle uri scheme",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"directories": {
"test": "test"
},
"dependencies": {
"url-parse": "1.5.4"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.5",
"chai": "^4.3.4",
"chai-exclude": "^2.1.0",
"coveralls": "^3.1.1",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"symbol-sdk": "^1.0.3",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
},
"scripts": {
"pretest": "npm run build",
"build": "rm -rf dist/ && tsc",
"lint:all": "tslint --project .",
"test": "mocha --ui bdd --recursive ./dist/test",
"test:cov": "nyc --reporter=lcov --reporter=text-summary npm t",
"test:coveralls": "npm run test:cov | coveralls",
"coveralls-report": "cat ./coverage/lcov.info | coveralls",
"doc": "typedoc --entryPointStrategy expand --out \"ts-docs/$(npm run version --silent)\" src",
"version": "echo $npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nemtech/symbol-uri-schema.git"
},
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/nemtech/symbol-uri-schema/issues"
},
"homepage": "https://github.com/nemtech/symbol-uri-schema#readme",
"nyc": {
"exclude": [
"**/*.spec.js"
]
}
}