-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
66 lines (66 loc) · 1.51 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "units-converter",
"version": "1.0.3",
"description": "A simple utility library to measure and convert between units",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"browser": "dist/umd/index.min.js",
"keywords": [
"units",
"conversion",
"convert-units",
"es6-modules",
"commonjs",
"javascript",
"measurement-units",
"unit-of-measure"
],
"repository": {
"type": "git",
"url": "https://github.com/nosferatoy/units-converter"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest --coverage && cat ./coverage/lcov.info | codacy-coverage",
"lint": "eslint '**/*.js' --fix",
"pretest": "agadoo"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"author": {
"name": "Georgios Papageorgiou",
"email": "[email protected]"
},
"license": "MIT",
"type": "module",
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"agadoo": "^1.0.1",
"babel-jest": "^26.0.1",
"codacy-coverage": "^3.4.0",
"eslint": "^6.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.0",
"jest": "^26.0.1",
"lint-staged": "^9.2.0",
"rollup": "^1.0.0",
"rollup-plugin-terser": "^5.3.0"
},
"files": [
"dist"
]
}