-
Notifications
You must be signed in to change notification settings - Fork 186
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "url-encoder",
"version": "1.0.1",
"description": "http://yoksel.github.io/url-encoder",
"main": ".eslintrc.js",
"scripts": {
"start": "gulp clean && gulp serve",
"build": "gulp clean && 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yoksel/url-encoder.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/yoksel/url-encoder/issues"
},
"homepage": "https://github.com/yoksel/url-encoder#readme",
"devDependencies": {
"babel-eslint": "10.1.0",
"browser-sync": "^2.26.10",
"colors": "^1.1.2",
"del": "^2.2.0",
"eslint": "7.5.0",
"eslint-config-standard": "14.1.1",
"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.1.0",
"gulp": "^4.0.2",
"gulp-mustache": "^5.0.0",
"gulp-rename": "2.0.0",
"gulp-sass": "^5.1.0",
"sass": "^1.58.3",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^19.0.0"
}
}