-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.34 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
{
"name": "long-ts",
"version": "1.0.0",
"description": "A Long class for representing a 64-bit two's-complement integer value.",
"keywords": [
"long",
"math",
"typescript"
],
"type": "module",
"author": "hornta",
"license": "MIT",
"homepage": "https://github.com/hornta/long-ts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hornta/long-ts.git"
},
"bugs": {
"url": "https://github.com/hornta/long-ts/issues"
},
"files": [
"dist"
],
"source": "./src/long.ts",
"module": "./dist/long.js",
"exports": "./dist/long.modern.js",
"main": "./dist/long.cjs",
"umd:main": "./dist/long.umd.js",
"types": "./dist/long.d.ts",
"scripts": {
"build": "microbundle && npm run generateDocs",
"test": "jest",
"lint": "eslint .",
"generateDocs": "typedoc --cleanOutputDir ./src/long.ts",
"prepare": "npm run lint && npm run test && npm run build"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.0",
"microbundle": "^0.13.3",
"prettier": "2.4.1",
"ts-jest": "^27.0.5",
"typedoc": "^0.22.3"
}
}