-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
36 lines (36 loc) · 929 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
{
"name": "webpack-conditional-loader",
"version": "1.0.12",
"description": "#ifdef for JavaScript",
"main": "src/index.js",
"directories": {
"test": "test",
"src": "src"
},
"files": [
"src/",
"test/"
],
"dependencies": {},
"devDependencies": {
"standard": "^10.0.2",
"tap": "^10.7.0",
"webpack": "^3.4.1"
},
"scripts": {
"test": "NODE_ENV=PRODUCTION npm run build && tap 'test/index.js'",
"lint": "standard --fix './src/**/*.js' './test/**/.js'",
"build": "webpack --config webpack.js > /dev/null"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caiogondim/webpack-conditional-loader.git"
},
"keywords": [],
"author": "Caio Gondim",
"license": "MIT",
"bugs": {
"url": "https://github.com/caiogondim/webpack-conditional-loader/issues"
},
"homepage": "https://github.com/caiogondim/webpack-conditional-loader#readme"
}