-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "@weknow.network/wk-pkg-extensions",
"publishConfig": {
"access": "public"
},
"version": "1.0.16",
"license": "MIT",
"private": false,
"author": "WeKnow",
"description": "String, array and object prototype extensions and methods.",
"homepage": "https://github.com/weknow-network/wk-pkg-extensions",
"repository": {
"type": "git",
"url": "https://github.com/weknow-network/wk-pkg-extensions"
},
"bugs": {
"url": "https://github.com/weknow-network/wk-pkg-extensions/issues"
},
"engines": {
"yarn": ">=1.22.0"
},
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"dependencies": {
"@weknow.network/wk-pkg-primitives": "^1.0.20"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.4.0",
"jest": "^27.5.1",
"rollup": "^2.67.3",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/esm/types/index.d.ts"
}