-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 836 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 836 Bytes
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
{
"name": "cnv",
"version": "2.0.1",
"description": "",
"main": "index.js",
"files": [
"build/src/**/*"
],
"repository": {
"url": "git@github.com:nkhil/cnv.git",
"type": "git"
},
"bin": {
"cnv": "./build/src/index.js"
},
"scripts": {
"test": "ava --verbose",
"build": "tsc",
"prepublish": "npm run test && npm run build"
},
"keywords": [
"convert units",
"command line"
],
"author": "",
"license": "ISC",
"dependencies": {
"convert-units": "^2.3.4"
},
"devDependencies": {
"@ava/typescript": "^2.0.0",
"@types/convert-units": "^2.3.5",
"@types/node": "^16.7.6",
"ava": "^3.15.0",
"typescript": "^4.4.2"
},
"ava": {
"typescript": {
"rewritePaths": {
"test/": "build/test/"
},
"compile": "tsc"
}
}
}