-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 803 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 803 Bytes
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
{
"name": "webpack-preprocessor-loader",
"version": "1.0.4",
"description": "Runs a C like preprocessor on files",
"main": "build/index.js",
"scripts": {
"build": "tsc index.ts --outDir build --sourceMap",
"test": "jasmine"
},
"author": "Patrik Lindahl <patrik@ramnet.se>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ramzeus/webpack-preprocessor-loader.git"
},
"keywords": [
"webpack-loader",
"preprocessor",
"conditional-statements",
"nodejs"
],
"dependencies": {
"loader-utils": "^1.1.0"
},
"devDependencies": {
"@types/jasmine": "^2.5.53",
"@types/loader-utils": "^1.1.0",
"@types/node": "^8.0.22",
"@types/webpack": "^3.0.9",
"jasmine": "^2.7.0",
"typescript": "^2.7.2"
}
}