forked from eisisig/component-resolver-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 805 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 805 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
{
"name": "component-resolver-case-sensitive-webpack",
"version": "0.1.1",
"description": "Webpack plugin that simplifies process of components loading",
"main": "src/resolver.js",
"repository": {
"type": "git",
"url": "https://github.com/florian-bd/component-resolver-webpack"
},
"keywords": [
"webpack",
"react"
],
"author": "Florian Bernard",
"license": "MIT",
"peerDependencies": {
"webpack": "1.x"
},
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.0.1",
"sinon": "^1.12.1",
"sinon-chai": "^2.6.0"
},
"scripts": {
"test": "mocha \"./**/__tests__/*.js\" --require \"./src/__tests__/_test_helper\" --recursive --reporter spec",
"autotest": "npm test -- --watch"
},
"dependencies": {
"true-case-path": "1.0.2"
}
}