-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 936 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
37
{
"name": "standard-library-extensions",
"version": "1.0.0",
"description": "JavaScript standard library extensions for building complex and scalable web applications.",
"repository": {
"type": "git",
"url": "https://github.com/oddui/standard-library-extensions"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist coverage",
"format": "prettier --write .",
"prepublishOnly": "npm run test && npm run clean && npm run build",
"test": "jest --config jestconfig.json"
},
"author": "Ziyu",
"license": "Apache-2.0",
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/index.js",
"./dist/*": "./dist/*"
},
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^27.0.3",
"jest": "^27.4.0",
"prettier": "^2.5.0",
"ts-jest": "^27.1.0",
"typescript": "^4.5.2"
}
}