-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "webpack-partial",
"version": "2.2.0",
"author": "Izaak Schroeder <[email protected]>",
"description": "Webpack partials.",
"license": "CC0-1.0",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"prepublish": "./node_modules/.bin/babel -s -d ./ lib",
"spec": "NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-core/register -r test/helper/chai -r adana-dump -R spec test/spec",
"test": "npm run lint && npm run spec"
},
"repository": {
"type": "git",
"url": "https://github.com/izaakschroeder/webpack-partial"
},
"bugs": {
"url": "https://github.com/izaakschroeder/webpack-partial/issues"
},
"keywords": [
"webpack",
"partial",
"include"
],
"dependencies": {
"lodash": "^4.12.0"
},
"devDependencies": {
"adana-cli": "^0.1.1",
"adana-dump": "^0.1.0",
"adana-format-lcov": "^0.1.1",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-preset-metalab": "^0.2.1",
"chai": "^3.5.0",
"eslint": "^2.10.2",
"eslint-config-metalab": "^4.0.1",
"eslint-plugin-filenames": "^0.2.0",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-lodash-fp": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"mocha": "^2.4.5",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"webpack": "^3.10.0"
}
}