-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.6 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.6 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
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
{
"name": "scalajs-webpack-loader",
"version": "0.0.6",
"description": "",
"config": {
"prettier_files": "**/*.{json,ts,tsx,js,jsx,md,yml}",
"scalafmt_files": "src/main/scala project/*.sbt ./*.sbt"
},
"engines": {
"node": ">=10.0.0"
},
"main": "dist/bundle.js",
"publishConfig": {
"access": "public"
},
"files": [
"/dist"
],
"scripts": {
"build": "npm-run-all build:scalajs build:bundle",
"build:scalajs": "per-env",
"build:scalajs:production": "sbt fullOptJS",
"build:scalajs:development": "sbt fastOptJS",
"build:bundle": "webpack",
"test": "npm-run-all test:integration test:unit test:package test:format:*",
"test:integration": "mocha",
"test:unit": "sbt test",
"test:package": "pkg-ok",
"test:format:scala": "scalafmt --test $npm_package_config_scalafmt_files || sbt scalafmtCheckAll",
"test:format:js": "prettier --check $npm_package_config_prettier_files",
"fix": "npm-run-all fix:**",
"fix:format:scala": "scalafmt $npm_package_config_scalafmt_files || sbt scalafmtAll",
"fix:format:js": "prettier --write $npm_package_config_prettier_files",
"clean": "npm-run-all --parallel clean:*",
"clean:scalajs": "sbt clean",
"clean:bundle": "rimraf dist",
"clean:fixtures": "rimraf test/integration/fixtures/**/{dist,.cache,target}",
"preversion": "npm-run-all clean build test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaximeKjaer/scalajs-webpack.git"
},
"keywords": [
"scalajs",
"webpack",
"loader"
],
"author": "Maxime Kjaer <maxime.kjaer@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MaximeKjaer/scalajs-webpack/issues"
},
"homepage": "https://github.com/MaximeKjaer/scalajs-webpack#readme",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.3",
"@types/memory-fs": "^0.3.2",
"@types/mocha": "^7.0.2",
"@types/webpack": "^4.41.21",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"memory-fs": "^0.5.0",
"mocha": "^7.2.0",
"npm-run-all": "^4.1.5",
"per-env": "^1.0.2",
"pkg-ok": "^2.3.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"fs-extra": "^8.0.1",
"loader-utils": "^1.4.0",
"node-fetch": "^2.5.0",
"sax": "^1.2.4",
"schema-utils": "^2.7.0",
"webpack-log": "^3.0.1",
"xhr2": "^0.2.0",
"xmldom": "^0.3.0"
}
}