-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.77 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
{
"name": "@copicake/copicake-js",
"version": "0.0.8",
"description": "Copicake JS Library",
"author": "EragonJ <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:Copicake/copicake-js.git"
},
"license": "MIT",
"keywords": [
"copicake",
"canvas",
"marketing"
],
"main": "./dist/tsc/main.js",
"types": "./dist/tsc/main.d.ts",
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/main.ts",
"prepublish": "npm run build-all",
"build": "tsc -p tsconfig.json",
"build-all": "npm run clean && npm run build && npm run esbuild",
"esbuild": "esbuild src/main.ts --bundle --platform=node --minify --sourcemap=external --outfile=dist/esbuild/main.js",
"esbuild:dev": "esbuild src/main.ts --bundle --platform=node --sourcemap=external --outfile=dist/esbuild/main.js",
"esbuild:watch": "esbuild src/main.ts --bundle --platform=node --watch --sourcemap=external --outfile=dist/esbuild/main.js"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^26.0.21",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"esbuild": "^0.11.11",
"eslint": "^7.22.0",
"jest": "^26.6.3",
"semantic-release": "^19.0.2",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typedoc": "^0.20.35",
"typescript": "^4.2.3"
},
"dependencies": {
"isomorphic-form-data": "^2.0.0",
"isomorphic-unfetch": "^3.1.0"
}
}