-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.25 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
{
"name": "@theholocron/webpack-config",
"homepage": "https://github.com/the-holocron/threepio/tree/master/packages/webpack-config#readme",
"description": "A Webpack configuration for developing and bundling libraries within the Galaxy.",
"author": "Newton Koumantzelis",
"version": "0.2.6",
"main": "index.js",
"files": [
"index.js"
],
"repository": "https://github.com/the-holocron/threepio.git",
"bugs": "https://github.com/the-holocron/threepio/issues",
"releases": "https://github.com/the-holocron/threepio/releases",
"wiki": "https://github.com/the-holocron/threepio/wiki",
"license": "GPL-3.0",
"eslintConfig": {
"extends": "@theholocron"
},
"jest": {
"preset": "@theholocron/jest-preset"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint .",
"test": "jest --coverage"
},
"dependencies": {
"@theholocron/postcss-config": "file:../postcss-config",
"babel-loader": "^8.2.2",
"css-loader": "^3.6.0",
"obsolete-webpack-plugin": "^0.5.6",
"postcss-loader": "^3.0.0",
"raw-loader": "^4.0.2",
"sass-loader": "^7.1.0",
"style-loader": "^1.3.0",
"webpack": "^4.33.0"
},
"devDependencies": {
"@theholocron/eslint-config": "file:../eslint-config"
}
}