-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.64 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
{
"name": "@vas-dev/units",
"version": "0.1.0",
"author": "Marcelo Alves <[email protected]>",
"description": "Small wrapper to help with unit conversions",
"keywords": [
"js-quantities",
"units",
"imperial",
"metric"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/vas-dev/units.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"exports": "dist/index.modern.js",
"umd:main": "dist/index.umd.js",
"scripts": {
"prepare": "husky install",
"prebuild": "rimraf dist",
"build": "microbundle src/index.ts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"lint:staged": "pretty-quick src/**/*.ts",
"prerelease": "yarn test --no-cache && yarn build",
"release": "changeset publish"
},
"prettier": {
"semi": false,
"printWidth": 120,
"singleQuote": true
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.0",
"@changesets/cli": "^2.16.0",
"@types/jest": "^26.0.22",
"@types/js-quantities": "^1.6.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"ts-essentials": "^7.0.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4"
},
"dependencies": {
"js-quantities": "^1.7.6"
}
}