-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.56 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "svg-webgl-loader",
"version": "2.0.0",
"description": "",
"browser": "dist/js/index.umd.js",
"module": "dist/js/index.esm.js",
"types": "dist/js/index.d.ts",
"scripts": {
"dev": "webpack serve -c ./config/webpack.dev.js --progress",
"build": "rollup -c ./rollup.config.js",
"clear": "rm -rf dist",
"commit": "git add . && git-cz",
"version": "conventional-changelog -p angular -u -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git@github.com:elab-opensource/svg-webgl-loader.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/copy-webpack-plugin": "^8.0.1",
"@types/webpack": "^5.28.0",
"@types/webpack-merge": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"babel-loader": "^8.2.2",
"browserslist": "^4.16.6",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"copy-webpack-plugin": "^9.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^4.3.8",
"lint-staged": ">=10",
"prettier": "^2.3.2",
"rollup": "^2.56.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-loader": "^9.2.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"url-loader": "^4.1.1",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"files": [
"dist/js",
"src"
],
"lint-staged": {
"*{.ts,.js}": "eslint --cache --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"browserslist": [
"chrome >= 36",
"safari >= 10.3",
"ios >= 10.3"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}