-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 979 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
{
"name": "ratnum",
"version": "1.1.0",
"description": "",
"main": "cjs/index.js",
"module": "es/index.js",
"browser": "es/index.js",
"scripts": {
"build": "tsc --project tsconfig.es.json && tsc --project tsconfig.cjs.json",
"prepack": "tsc --project tsconfig.es.json && tsc --project tsconfig.cjs.json",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "github:tlaziuk/ratnum"
},
"homepage": "https://github.com/tlaziuk/ratnum",
"author": "Tomek Łaziuk <[email protected]> (https://tlaziuk.com/)",
"license": "MIT",
"jest": {
"preset": "ts-jest/presets/js-with-ts",
"testEnvironment": "node"
},
"devDependencies": {
"@types/jest": "^25.0.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.0.0",
"jest": "^25.0.0",
"ts-jest": "^25.0.0",
"typescript": "~3.8.0"
},
"dependencies": {
"tslib": "^1.11.0"
}
}