-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.63 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
56
57
58
59
60
61
62
{
"name": "webpack-content-replacer-plugin",
"version": "0.5.1",
"description": "Replace content in file in webpack workflow",
"main": "index.js",
"scripts": {
"lint": "eslint '**/*.js' --ignore-path .eshintignore",
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
"pretest": "npm run lint",
"test": "npm run cover",
"posttest": "codecov",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iGitScor/webpack-content-replacer-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"string replace",
"content replace",
"replace",
"webpack plugin",
"str replace"
],
"author": "iGitScor <sebastien.correaud@gmail.com> (http://iscor.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iGitScor/webpack-content-replacer-plugin/issues"
},
"homepage": "https://github.com/iGitScor/webpack-content-replacer-plugin#readme",
"devDependencies": {
"all-contributors-cli": "^4.0.1",
"codecov": "^2.1.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^15.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.0",
"eslint-plugin-react": "^7.0.0",
"expect.js": "^0.3.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"rimraf": "^2.6.1",
"webpack": "^1.14.0",
"webpack-mock": "^0.1.1"
},
"optionalDependencies": {
"ua-npmscript-notifier": "^0.2"
},
"engines": {
"node": ">=4"
},
"files": [
"index.js",
"helpers"
],
"dependencies": {
"winston": "^2.3.1"
}
}