-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.61 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
52
53
54
{
"name": "@micheleriva/std",
"version": "0.0.1-rc6",
"description": "My personal TypeScript and JavaScript standard library",
"main": "build/cjs/index.js",
"files": [
"build"
],
"types": "build/types",
"repository": "https://github.com/micheleriva/std",
"author": "Michele Riva <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"prepublish": "npm run test && npm run build",
"build": "rm -rf build && node lib/build.mjs && yarn build:declarations",
"build:declarations": "tsc --declaration --outDir build/types",
"changelog": "conventional-changelog -p @micheleriva/std -i CHANGELOG.md -s",
"lint": "prettier --write \"src/**/**/*.{ts,js}\" && tslint -c tslint.json 'src/**/*.{ts,js}' --fix",
"test": "jest --coverage",
"commit": "git-cz"
},
"module": "./build/esm/index.js",
"exports": {
".": {
"default": "./build/cjs/index.js",
"require": "./build/cjs/index.js",
"import": "./build/esm/index.js"
}
},
"unpkg": "./build/iife/index.js",
"jsdelivr": "./build/iife/index.js",
"devDependencies": {
"@swc/core": "^1.2.118",
"@swc/jest": "^0.2.12",
"@types/jest": "^27.4.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"conventional-changelog": "^3.1.24",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.14.8",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"tslint": "^6.1.3",
"tslint-config-airbnb-base": "^0.3.0",
"typescript": "^4.5.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}