-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.64 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
{
"name": "pug-js-presentation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"dependencies": {
"pug": "^2.0.4"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"@becode/eslint-config": "^0.7.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-unicorn": "^12.0.1",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.0",
"gulp-babel": "^8.0.0",
"gulp-livereload": "^4.0.2",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.1",
"gulp-pretty-html": "^2.0.10",
"gulp-pug": "^4.0.1",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"husky": "^3.0.5",
"lint-staged": "^9.3.0",
"prettier": "^1.18.2",
"static-server": "^2.2.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "gulp"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ashr4f/PugJS-Representation.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ashr4f/PugJS-Representation/issues"
},
"homepage": "https://github.com/Ashr4f/PugJS-Representation#readme",
"lint-staged": {
"*.js": [
"npx eslint --fix --cache",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
}
}