-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
55 lines (55 loc) · 1.44 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
{
"name": "webpack-component-loader",
"version": "1.0.10",
"description": "A webpack loader to componentify CSS/JS/HTML without framework",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicholaslee119/webpack-component-loader.git"
},
"keywords": [
"webpack",
"loader",
"component"
],
"author": "nicholas lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/nicholaslee119/webpack-component-loader/issues"
},
"homepage": "https://github.com/nicholaslee119/webpack-component-loader#readme",
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^5.15.2",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"extract-text-webpack-plugin": "^3.0.1",
"jest": "^21.2.0",
"klaw-sync": "^3.0.0",
"regenerator-runtime": "^0.11.0",
"style-loader": "^0.19.0",
"webpack": "^3.5.6",
"webpack-component-loader-smarty-parser": "0.0.4"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/lib/**"
],
"coverageDirectory": "./test/coverage/"
},
"dependencies": {
"fs-extra": "^4.0.2",
"hash-sum": "^1.0.2",
"is-valid-path": "^0.1.1",
"loader-utils": "^1.1.0",
"postcss": "^6.0.13",
"postcss-selector-parser": "^2.2.3"
}
}