-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 749 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 749 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
{
"name": "component-resolver-webpack",
"version": "0.2.0",
"description": "Webpack plugin that simplifies process of components loading",
"main": "src/resolver.js",
"repository": {
"type": "git",
"url": "https://github.com/kossnocorp/component-resolver-webpack"
},
"keywords": [
"webpack",
"react"
],
"author": "Sasha Koss <sasha@toptal.com>",
"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"
}
}