-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "@deboertool/vo-tolerances",
"version": "0.2.1",
"description": "A value object for a pair (upper, lower) of tolerances",
"main": "index.ts",
"scripts": {
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run test",
"test": "mocha-webpack --webpack-config webpack.config.js ./test/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeBoerTool/vo-tolerances.git"
},
"author": "Daniel S. Deboer",
"license": "MIT",
"bugs": {
"url": "https://github.com/DeBoerTool/vo-tolerances/issues"
},
"homepage": "https://github.com/DeBoerTool/vo-tolerances#readme",
"dependencies": {
"@deboertool/value-object-interface": "^0.3.4",
"@deboertool/vo-tolerance": "^0.2.7"
},
"devDependencies": {
"@deboertool/vo-precision": "^0.2.0",
"@deboertool/vo-unit": "^0.1.2",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"ts-loader": "^5.3.3",
"typescript": "^3.2.4",
"webpack": "^4.29.3"
}
}