-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 2.94 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 2.94 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "deux-cli",
"version": "1.0.0-4",
"description": "Simple CLI for scaffolding component-based WordPress starter theme",
"main": "index.js",
"bin": {
"deux": "bin/deux"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ribhnux/deux.git"
},
"keywords": [
"cli",
"wordpress",
"starter-theme"
],
"author": "Ribhararnus Pracutian <pracutian@ribnux.tech> (https://www.oknoorap.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ribhnux/deux/issues"
},
"homepage": "https://github.com/Ribhnux/deux#readme",
"dependencies": {
"arrandel": "^1.0.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"browser-sync": "^2.23.6",
"caporal": "^0.9.0",
"cdnjs-api": "^1.3.1",
"chalk": "^2.3.2",
"cp-file": "^5.0.0",
"download": "^6.2.5",
"execa": "^0.8.0",
"extend": "^3.0.1",
"faker": "^4.1.0",
"force-semver": "^1.0.0",
"global-path": "^1.1.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.1.0",
"gulp-clean-css": "^3.9.3",
"gulp-clone": "^2.0.1",
"gulp-cssbeautify": "^1.0.0",
"gulp-gettext": "^0.3.0",
"gulp-if": "^2.0.2",
"gulp-plumber": "^1.2.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-rtlcss": "^1.1.0",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-strip-css-comments": "^1.2.0",
"gulp-uglify": "^3.0.0",
"gulp-wp-pot": "^2.2.0",
"handlebars": "^4.0.11",
"html-entities": "^1.2.1",
"html5-validator": "^1.2.1",
"inquirer": "^4.0.2",
"json-realtime": "^1.3.3",
"jsonar": "^1.8.0",
"listr": "^0.13.0",
"lodash.intersection": "^4.4.0",
"lodash.isobject": "^3.0.2",
"lodash.last": "^3.0.0",
"lodash.sample": "^4.2.1",
"lodash.uniq": "^4.5.0",
"merge2": "^1.2.1",
"mkdirp": "^0.5.1",
"moment": "^2.21.0",
"ncp": "^2.0.0",
"node-slugify": "^0.0.3",
"ora": "^2.0.0",
"rimraf": "^2.6.2",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-cleanup": "^2.0.0",
"rollup-stream": "^1.24.1",
"semver": "^5.5.0",
"strip-ansi": "^4.0.0",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^18.2.0",
"update-notifier": "^2.3.0",
"validate.js": "^0.12.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"weft": "^1.2.4",
"wp-get-file-header": "^1.0.1",
"wp-get-l10n": "^1.0.0",
"wp-plugin-info": "^1.0.0",
"wp-plugin-search": "^1.1.1",
"wp-theme-check": "^1.5.0",
"wpcs": "^1.7.3",
"xo": "^0.18.2",
"zip-dir": "^1.0.2"
},
"devDependencies": {
"ava": "^0.23.0"
},
"scripts": {
"lint": "xo",
"unit-test": "ava --verbose",
"test": "yarn lint && yarn unit-test"
},
"ava": {
"files": [
"test/test.js"
]
},
"xo": {
"esnext": true,
"space": true,
"semicolon": false,
"ignores": [
"src/templates/**",
"test/wordpress/**",
"website/**"
]
}
}