-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.02 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": "@gapit/format-si",
"version": "0.0.1",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rollup -c",
"lint": "eslint . --ext .ts,.js && prettier --check .",
"prepublishOnly": "npm run build",
"test": "jest",
"watch": "rollup -c -w"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"jest": "^26.5.2",
"prettier": "^2.1.2",
"rollup": "^2.26.11",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"description": "Format a number into SI metric prefixed value.",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gapitio/gapit-format-si.git"
},
"author": "Gapit",
"publishConfig": {
"access": "public"
}
}