-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 795 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 795 Bytes
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
{
"name": "selfcode",
"version": "1.0.0",
"description": "",
"main": "dist/utils.umd.js",
"types": "dist/types/index.d.ts",
"type": "module",
"scripts": {
"clean": "rimraf dist",
"test": "jest",
"build:types": "tsc",
"build:js": "rollup -c",
"build": "npm run clean && npm run build:types && npm run build:js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^6.0.1",
"rollup": "^3.29.5",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1"
},
"keywords": [],
"author": "",
"license": "ISC"
}