-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 854 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
{
"name": "unit-system",
"version": "0.0.0-development",
"description": "A library for defining unit systems and performing unit-safe calculations",
"main": "src/index.js",
"scripts": {
"test": "jest",
"commit": "npx git-cz",
"semantic-release": "semantic-release"
},
"keywords": [
"unit",
"units",
"system",
"measure",
"measurement",
"convert",
"conversion"
],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^23.6.0",
"prettier": "^1.14.3",
"semantic-release": "^15.10.6"
},
"dependencies": {
"lodash": "^4.17.11",
"node-dijkstra": "^2.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/alanhussey/unit-system.git"
}
}