-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "multi-integer-range",
"version": "5.2.0",
"description": "Parses and manipulates multiple comma-separated integer ranges (eg 1-3,8-10)",
"repository": "https://github.com/smikitky/node-multi-integer-range.git",
"sideEffects": false,
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"exports": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"types": "./lib/cjs/index.d.ts",
"scripts": {
"test": "jest --coverage",
"doc": "node scripts/docgen.js",
"clean": "rimraf lib",
"build": "npm run clean && tsc -p tsconfig-esm.json && tsc -p tsconfig-cjs.json && node scripts/postbuild.js",
"prepack": "npm run build",
"prettier": "prettier --write src/**/*.{ts,js}"
},
"keywords": [
"integer",
"range",
"page",
"multiple",
"parseInt",
"parse"
],
"author": "Soichiro Miki",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"jest-ts-webcompat-resolver": "^1.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "none"
},
"runkitExampleFilename": "example.js"
}