generated from facing-dev/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1023 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
{
"name": "needle",
"version": "1.0.0",
"description": "",
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
"scripts": {
"test": "jest",
"lint": "npx eslint ./src",
"build": "npm run build:umd && npm run build:esm",
"watch": "npm run watch:esm",
"watch:umd": "npx ./node_modules/.bin/tsc --project ./tsconfig/tsconfig.umd.json --watch",
"watch:esm": "npx ./node_modules/.bin/tsc --project ./tsconfig/tsconfig.esm.json --watch",
"build:umd": "npx ./node_modules/.bin/tsc --project ./tsconfig/tsconfig.umd.json",
"build:esm": "npx ./node_modules/.bin/tsc --project ./tsconfig/tsconfig.esm.json",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/facing-dev/needle"
},
"author": "",
"license": "MIT",
"dependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"typescript-eslint": "^7.0.2"
}
}