-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.11 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
{
"name": "bin-exec-loader",
"version": "0.0.0-development",
"description": "Execute any binary as a webpack loader",
"keywords": [
"webpack-loader",
"loader",
"universal",
"universal-loader",
"binary",
"webpack",
"any",
"bash",
"exec"
],
"main": "source/loader.js",
"author": {
"name": "Rafael Milewski",
"email": "rafael.milewski@gmail.com",
"url": "https://github.com/milewski"
},
"license": "MIT",
"files": [
"source/*.js",
"examples/**/*.js"
],
"homepage": "https://github.com/milewski/bin-exec-loader",
"bugs": {
"url": "https://github.com/milewski/bin-exec-loader/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/milewski/bin-exec-loader.git"
},
"scripts": {
"prepublish": "npm run build && npm test",
"test": "mocha test/test.js --no-timeouts",
"pretest": "npm run build",
"postbuild": "cross-os make-execultable",
"build": "tsc",
"precommit": "npm test",
"prepush": "npm test",
"commit": "git-cz",
"semantic-release": "semantic-release",
"make-execultable": {
"linux": "chmod +x test/sample-files/copy-cat.js",
"darwin": "chmod +x test/sample-files/copy-cat.js"
}
},
"dependencies": {
"calipers": "^2.0.0",
"calipers-bmp": "^2.0.0",
"calipers-gif": "^2.0.0",
"calipers-jpeg": "^2.0.0",
"calipers-png": "^2.0.0",
"calipers-svg": "^2.0.0",
"execa": "^0.10.0",
"fs-extra": "^7.0.0",
"loader-utils": "^1.1.0",
"options-to-spawn-args": "^2.1.1",
"temp-write": "^3.4.0",
"tempy": "^0.2.1"
},
"devDependencies": {
"@types/fs-extra": "^5.0.2",
"@types/mocha": "^5.2.0",
"@types/node": "^10.0.4",
"cross-os": "^1.3.0",
"cz-conventional-changelog": "^2.1.0",
"expect.js": "^0.3.1",
"file-loader": "^1.1.11",
"file-type": "^7.7.1",
"husky": "^0.14.3",
"loader-runner": "^2.3.0",
"mocha": "^5.1.1",
"pngquant-bin": "^4.0.0",
"semantic-release": "^15.3.1",
"typescript": "^2.8.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}