-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
36 lines (36 loc) · 1.08 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
{
"name": "forgo",
"version": "4.1.7",
"main": "./dist/forgo.min.js",
"type": "module",
"author": "Jeswin Kumar<[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/forgojs/forgo"
},
"exports": "./dist/forgo.min.js",
"types": "./dist/index.d.ts",
"devDependencies": {
"@types/jsdom": "^21.1.0",
"@types/mocha": "^10.0.1",
"@types/should": "^13.0.0",
"@types/source-map-support": "^0.5.6",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"esbuild": "^0.17.8",
"eslint": "^8.34.0",
"jsdom": "^21.1.0",
"mocha": "^10.2.0",
"rimraf": "^4.1.2",
"should": "^13.2.3",
"source-map-support": "^0.5.21",
"typescript": "^4.9.5"
},
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && npx tsc --emitDeclarationOnly && npx esbuild ./src/index.ts --minify --bundle --format=esm --sourcemap --target=es2015 --outfile=dist/forgo.min.js",
"build-dev": "npx tsc",
"test": "npx tsc && npx mocha dist/test/test.js"
},
"license": "MIT"
}