-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 1.78 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "jsxbin-webpack-plugin",
"version": "1.0.0",
"description": "A Webpack plugin to JSXbin-pack Extendscript outputs.",
"main": "lib/index.js",
"scripts": {
"prepare": "babel src/index.js --out-dir lib",
"lint": "eslint src",
"test": "jest",
"release": "standard-version -r"
},
"jest": {
"testEnvironment": "node"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"node": "6"
}
}
]
]
},
"eslintConfig": {
"extends": [
"standard",
"plugin:jest/recommended"
],
"rules": {
"jest/valid-expect": 0
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/sammarks/jsxbin-webpack-plugin.git"
},
"keywords": [
"jsxbin",
"webpack",
"plugin",
"webpack-plugin",
"cep",
"extendscript"
],
"author": "Sam Marks <sam@sammarks.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sammarks/jsxbin-webpack-plugin/issues"
},
"homepage": "https://github.com/sammarks/jsxbin-webpack-plugin#readme",
"optionalDependencies": {
"jsxbin": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"chai": "^4.1.2",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.4",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.0.0",
"jest-junit": "^5.1.0",
"rimraf": "^2.6.2",
"standard-version": "^4.4.0",
"webpack": "^4.41.2"
},
"peerDependencies": {
"webpack": "^4.0.0"
},
"dependencies": {
"webpack-sources": "^1.4.3"
}
}