-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.49 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
55
{
"name": "yatter",
"version": "1.5.0",
"description": "tool collection",
"main": "lib/index.js",
"module": "es/index.mjs",
"jsnext:main": "es/index.mjs",
"browser": "dist/yatter.min.js",
"typings": "./typings/index.d.ts",
"scripts": {
"test": "npx jest",
"build": "rm -rf dist es lib && rollup -c",
"postbuild": "node scripts/mergeTypes.mjs & uglifyjs dist/yatter.js -o dist/yatter.min.js",
"prepare": "npx husky install",
"docs": "npx typedoc src/*.ts"
},
"author": "leemotive <wstation@163.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/leemotive/yatter.git"
},
"bugs": {
"url": "https://github.com/leemotive/yatter/issues"
},
"homepage": "https://leemotive.github.io/yatter/",
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"rollup": "^3.7.3",
"rollup-plugin-dts": "^5.0.0",
"ts-jest": "^29.0.3",
"tslib": "^2.4.1",
"typedoc": "^0.23.22",
"typescript": "^4.9.4",
"uglify-js": "^3.17.4"
},
"files": [
"dist",
"es",
"lib",
"typings"
]
}