-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 930 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
{
"name": "to-unit-decorator",
"version": "1.0.0",
"description": "Typescript decorator for unit of measure conversions",
"repository": {
"type": "git",
"url": "git+https://github.com/lizmstanley/to-unit-decorator.git"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"bugs": {
"url": "https://github.com/lizmstanley/tounit/issues"
},
"homepage": "https://github.com/lizmstanley/tounit#readme",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run build && mocha -t 20000 --require ts-node/register $(find ./test -name '*.ts')",
"build": "rm -rf ./dist; tsc"
},
"keywords": ["typecript", "decorator"],
"author": "Liz Stanley",
"license": "MIT"
}