-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 897 Bytes
/
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
{
"name": "@abckey/unit-helper",
"version": "0.6.0",
"description": "A Blockchain Encrypted Digital Currency Unit Converter.",
"author": "abckey <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"tsc:check": "tsc --noEmit",
"tsc:watch": "npm run tsc:check -- --watch",
"build": "rimraf dist && tsc",
"test": "npm run build & ava -v",
"prepare": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/abcKeyCOM/unit-helper.git"
},
"devDependencies": {
"@types/node": "^12.7.4",
"ava": "^2.3.0",
"rimraf": "^3.0.0",
"ts-node": "^8.3.0",
"typescript": "^3.6.2"
},
"dependencies": {
"bignumber.js": "^9.0.0"
},
"files": [
"dist"
],
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}