-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
40 lines (40 loc) · 900 Bytes
/
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
{
"name": "webpack-preprocessor-loader",
"version": "1.3.0",
"description": "A code preprocessor for Webpack",
"main": "index.js",
"repository": "https://github.com/afterwind-io/preprocessor-loader.git",
"author": "AfterWind <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=6.11.5"
},
"homepage": "https://github.com/afterwind-io/preprocessor-loader",
"keywords": [
"webpack",
"loader",
"preprocessor",
"preprocess",
"precompile"
],
"files": [
"dist/",
"index.js"
],
"scripts": {
"mock": "node ./mock/build.js",
"build": "tsc",
"test": "mocha",
"prepare": "yarn build"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^14.0.24",
"chai": "^4.2.0",
"eslint": "^7.5.0",
"mocha": "^8.0.1",
"tslint": "^6.1.2",
"typescript": "^4.6.4",
"webpack": "^4.43.0"
}
}