forked from shakacode/bootstrap-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.09 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
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
{
"name": "bootstrap-loader",
"version": "2.1.0",
"description": "Boostrap for Webpack",
"main": "loader.js",
"scripts": {
"test": "babel-tape-runner node_package/tests/**/*.test.js | tap-spec",
"start": "npm run lint && npm run clean && npm run dev",
"dev": "babel --watch --out-dir lib src",
"build": "babel --out-dir lib src",
"lint": "eslint --ext .js .",
"clean": "rm -rf lib",
"prerelease": "npm run lint && npm run clean && npm run build",
"preversion": "npm run prerelease",
"prepublish": "npm run prerelease",
"release:patch": "scripts/release patch",
"release:minor": "scripts/release minor",
"release:major": "scripts/release major"
},
"authors": [
"Justin Gordon <[email protected]> (https://github.com/justin808)",
"Alex Fedoseev <[email protected]> (https://github.com/alexfedoseev)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shakacode/bootstrap-loader.git"
},
"bugs": {
"url": "https://github.com/shakacode/bootstrap-loader/issues"
},
"homepage": "https://github.com/shakacode/bootstrap-loader#readme",
"keywords": [
"bootstrap",
"twitter"
],
"peerDependencies": {
"css-loader": "*",
"extract-text-webpack-plugin": ">=2.1.0",
"node-sass": "*",
"resolve-url-loader": "*",
"sass-loader": "*",
"url-loader": "*",
"webpack": ">=2.2.0"
},
"dependencies": {
"chalk": "^1.1.3",
"escape-regexp": "0.0.1",
"exports-loader": "^0.6.3",
"js-yaml": "^3.7.0",
"loader-utils": "^1.0.2",
"resolve": "^1.1.7",
"semver": "^5.3.0",
"strip-json-comments": "^2.0.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-tape-runner": "^2.0.1",
"eslint": "^3.10.2",
"eslint-config-shakacode": "13.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"extract-text-webpack-plugin": "^2.1.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"webpack": "^2.2.0"
}
}