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
| {
| "name": "wrap-loader",
| "description": "Add custom content before and after the loaded source.",
| "version": "0.2.0",
| "author": {
| "name": "Daniel Perez Alvarez",
| "email": "unindented@gmail.com",
| "url": "http://unindented.org/"
| },
| "repository": {
| "type": "git",
| "url": "git://github.com/unindented/wrap-loader.git"
| },
| "keywords": [
| "wrap",
| "webpack"
| ],
| "scripts": {
| "test:lint": "eslint .",
| "test:unit": "nodeunit test/loader.js",
| "test": "run-s test:*"
| },
| "dependencies": {
| "loader-utils": "^1.1.0"
| },
| "devDependencies": {
| "eslint": "^3.19.0",
| "eslint-config-standard": "^10.2.1",
| "eslint-plugin-import": "^2.3.0",
| "eslint-plugin-node": "^5.0.0",
| "eslint-plugin-promise": "^3.5.0",
| "eslint-plugin-standard": "^3.0.1",
| "nodeunit": "^0.11.1",
| "npm-run-all": "^4.0.2"
| }
| }
|
|