-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "html-tree",
"version": "1.0.0",
"description": "Html Tree generator",
"main": "index.html",
"author": "yoksel",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^10.1.0",
"browser-sync": "^2.26.10",
"colors": "^1.1.2",
"del": "^2.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^3.2.3",
"gulp": "^4.0.2",
"gulp-mustache": "^5.0.0",
"gulp-rename": "2.0.0",
"gulp-ruby-sass": "^2.0.6",
"gulp-sass": "^5.0.0",
"lodash.template": ">=4.5.0",
"node-sass": "^6.0.1",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^19.0.0"
},
"scripts": {
"start": "gulp serve",
"build": "gulp build",
"deploy": "npm run build && gh-pages -d build -b gh-pages",
"lint": "npm run js:lint && npm run css:lint",
"lint:fix": "npm run js:fix && npm run css:fix",
"js:lint": "eslint src",
"js:fix": "eslint src --fix",
"css:lint": "stylelint **/*.scss",
"css:fix": "stylelint **/*.scss --fix"
}
}