This repository was archived by the owner on Mar 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.58 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.58 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
{
"name": "extplug-cli",
"description": "CLI for building and bundling ExtPlug plugins.",
"version": "1.4.0",
"author": "Renée Kooi <renee@kooi.me>",
"bin": {
"extplug": "bin/extplug"
},
"bugs": {
"url": "https://github.com/extplug/extplug-cli/issues"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-extplug": "^4.0.0",
"chalk": "^2.2.0",
"commander": "^2.11.0",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"find-babel-config": "^1.0.1",
"generator-extplugin": "^2.0.0",
"gulp": "^3.9.1",
"json-loader": "^0.5.7",
"loud-rejection": "^1.6.0",
"pify": "^3.0.0",
"postcss-cssnext": "^3.0.2",
"postcss-loader": "^2.0.8",
"tmp": "0.0.33",
"uglifyjs-webpack-plugin": "^1.0.0-beta.3",
"uuid": "^3.0.1",
"webpack": "^3.8.1",
"yeoman-environment": "^2.0.5"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.6.0",
"gulp-babel": "^7.0.0",
"gulp-newer": "^1.3.0",
"gulp-plumber": "^1.1.0",
"gulp-util": "^3.0.8",
"gulp-watch": "^4.3.11",
"through2": "^2.0.3"
},
"directories": {
"lib": "lib"
},
"homepage": "https://github.com/extplug/extplug-cli#readme",
"keywords": [
"extplug"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/extplug/extplug-cli.git"
},
"scripts": {
"build": "gulp",
"prepublish": "npm run build",
"test": "eslint ."
}
}