-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.45 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.45 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
{
"name": "shim-loader",
"version": "1.0.1",
"description": "makes traditional/legacy scripts compatible with webpack",
"main": "lib/shimLoader.js",
"files": [
"*.md",
"src",
"lib"
],
"scripts": {
"clean-lib": "del-cli \".lib/**\"",
"clean-tmp": "del-cli \".tmp/**\"",
"build": "npm run clean-lib && babel ./src -d lib",
"test": "npm run clean-tmp && mocha --timeout 2000 --compilers js:babel-register test/test.js",
"cover": "cross-env BABEL_ENV=coverage nyc --reporter=lcov --reporter=text npm test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/zinserjan/shim-loader"
},
"bugs": {
"url": "https://github.com/zinserjan/shim-loader/issues"
},
"keywords": [
"webpack",
"shim",
"loader"
],
"author": "Jan-André Zinser",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-istanbul": "^1.0.3",
"babel-preset-es2015": "^6.13.2",
"babel-preset-es2015-script": "^1.0.0",
"babel-register": "^6.11.6",
"cross-env": "^2.0.0",
"del-cli": "^0.2.0",
"mocha": "^3.0.1",
"nyc": "^7.1.0",
"webpack": "^1.13.1"
},
"dependencies": {
"loader-utils": "^1.1.0",
"lodash": "^4.14.1",
"precond": "^0.2.3",
"webpack-sources": "^0.2.3"
},
"nyc": {
"include": [
"src/**/*.js"
],
"sourceMap": false,
"instrument": false
}
}