package.json
3.41 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"_args": [
[
{
"raw": "webpack-merge@^2.6.1",
"scope": null,
"escapedName": "webpack-merge",
"name": "webpack-merge",
"rawSpec": "^2.6.1",
"spec": ">=2.6.1 <3.0.0",
"type": "range"
},
"/Users/admin/Documents/workspace/programming"
]
],
"_from": "webpack-merge@>=2.6.1 <3.0.0",
"_id": "webpack-merge@2.6.1",
"_inCache": true,
"_location": "/webpack-merge",
"_nodeVersion": "6.9.1",
"_npmOperationalInternal": {
"host": "packages-18-east.internal.npmjs.com",
"tmp": "tmp/webpack-merge-2.6.1.tgz_1485680265562_0.5173087941948324"
},
"_npmUser": {
"name": "bebraw",
"email": "bebraw@gmail.com"
},
"_npmVersion": "4.0.5",
"_phantomChildren": {},
"_requested": {
"raw": "webpack-merge@^2.6.1",
"scope": null,
"escapedName": "webpack-merge",
"name": "webpack-merge",
"rawSpec": "^2.6.1",
"spec": ">=2.6.1 <3.0.0",
"type": "range"
},
"_requiredBy": [
"#DEV:/"
],
"_resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-2.6.1.tgz",
"_shasum": "f1d801d2c5d39f83ffec9f119240b3e3be994a1c",
"_shrinkwrap": null,
"_spec": "webpack-merge@^2.6.1",
"_where": "/Users/admin/Documents/workspace/programming",
"author": {
"name": "Juho Vepsalainen",
"email": "bebraw@gmail.com"
},
"bugs": {
"url": "https://github.com/survivejs/webpack-merge/issues"
},
"dependencies": {
"lodash": "^4.17.4"
},
"description": "Variant of merge that's useful for Webpack configuration",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-es2015": "^6.18.0",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"git-prepush-hook": "^1.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"npm-watch": "^0.1.7",
"webpack": "^1.14.0"
},
"directories": {},
"dist": {
"shasum": "f1d801d2c5d39f83ffec9f119240b3e3be994a1c",
"tarball": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-2.6.1.tgz"
},
"files": [
"lib"
],
"gitHead": "bf05faeea704d7b5fb86a656c1af07efeac895a3",
"homepage": "https://github.com/survivejs/webpack-merge",
"keywords": [
"webpack",
"merge"
],
"license": "MIT",
"main": "lib/index.js",
"maintainers": [
{
"name": "bebraw",
"email": "bebraw@gmail.com"
}
],
"name": "webpack-merge",
"optionalDependencies": {},
"pre-push": [
"test:lint",
"build",
"test"
],
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": "git+https://github.com/survivejs/webpack-merge.git"
},
"scripts": {
"build": "babel src -d lib",
"preversion": "npm run test:lint && npm run build && npm test && git commit --allow-empty -am \"Update lib\"",
"test": "mocha tests/test-*",
"test:coverage": "istanbul cover node_modules/.bin/_mocha tests/test-*",
"test:lint": "eslint src/ tests/ --cache",
"watch": "npm-watch"
},
"version": "2.6.1",
"watch": {
"build": {
"patterns": [
"src/**/*.js"
]
},
"test": {
"patterns": [
"src/**/*.js",
"tests/**/*.js"
]
},
"test:lint": {
"patterns": [
"src/**/*.js",
"tests/**/*.js"
]
}
}
}