This repository was archived by the owner on Sep 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.67 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.67 KB
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
{
"name": "vector-optimizer",
"version": "1.0.2",
"description": "curves for javascript",
"main": "build/main.js",
"types": "build/main.d.ts",
"author": "winetree94",
"repository": "https://github.com/winetree94/vector-optimizer",
"homepage": "https://github.com/winetree94/vector-optimizer",
"license": "ISC",
"scripts": {
"start": "webpack serve --host 0.0.0.0 --config ./webpack.config.dev.js",
"clean": "rimraf ./temp ./build ./docs ./dist",
"build": "npm run clean && npm run build:ts && npm run build:umd && npm run build:docs",
"build:ts": "tsc --project ./tsconfig.prod.json",
"build:umd": "cross-env NODE_ENV=production webpack --config ./webpack.config.prod.js",
"build:docs": "cross-env NODE_ENV=production webpack --config ./webpack.config.dev.js",
"serve:docs": "http-server -p 9009 ./docs",
"test": "ts-node node_modules/jasmine/bin/jasmine"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/jasmine": "^3.8.2",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"cross-env": "^7.0.3",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-prettier": "^3.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.0",
"http-server": "^0.12.3",
"jasmine": "^3.8.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.0.3",
"ts-loader": "^8.0.11",
"ts-node": "^10.2.1",
"typescript": "^4.1.2",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
}
}