-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
49 lines (49 loc) · 1.56 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
{
"name": "safe-units",
"description": "Type-safe TypeScript units of measure",
"keywords": [
"units",
"measure",
"dimension",
"metric",
"typescript",
"typesafe"
],
"version": "0.0.3",
"license": "MIT",
"homepage": "https://github.com/jscheiny/safe-units",
"bugs": "https://github.com/jscheiny/safe-units/issues",
"repository": {
"type": "git",
"url": "https://github.com/jscheiny/safe-units.git"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm-run-all -s codegen compile:src",
"codegen": "npm-run-all -s compile:codegen node:codegen",
"compile:src": "tsc -p src",
"compile:codegen": "tsc -p codegen",
"lint": "tslint -p src/tsconfig.json -c tslint.json '{src,codegen}/**/*.ts'",
"lint:fix": "yarn lint --fix",
"node:codegen": "node codegen/dist/emit",
"test": "jest --config jest.config.json",
"prepack": "yarn build",
"verify": "npm-run-all -s build lint test"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/node": "^8.10.16",
"jest": "^22.4.3",
"npm-run-all": "^4.1.3",
"prettier": "^1.12.1",
"ts-jest": "^22.4.6",
"ts-node": "^6.0.3",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.12.0",
"tslint-config-standard": "^7.0.0",
"tslint-no-circular-imports": "^0.4.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "~2.9.1"
}
}