-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.28 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
{
"name": "unit-format",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"description": "Library to convert value to fraction.",
"author": "GrandChef Team <desenvolvimento@grandchef.com.br>",
"engines": {
"node": ">= 12"
},
"scripts": {
"dev": "ts-node-dev --transpileOnly --no-notify src/index.ts",
"clean": "rimraf coverage dist tmp",
"build": "tsc -d -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint src/ --ext .ts",
"style:fix": "prettier --write \"__tests__/**/*.ts\" \"src/**/*.ts\"",
"style:check": "prettier --check \"__tests__/**/*.ts\" \"src/**/*.ts\"",
"test": "jest --coverage",
"test:watch": "jest --watchAll",
"test:debug": "node --inspect-brk=9229 node_modules/.bin/jest -i"
},
"devDependencies": {
"@types/intl": "^1.2.0",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.11",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.9.5"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"intl": "^1.2.5"
}
}