forked from StarWarsFoundryVTT/StarWarsFFG
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 817 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 817 Bytes
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
{
"name": "starwarsffg",
"version": "1.0.0",
"description": "( PLEASE NOTE: This is a custom fork based on [Jaxxa's implementation](https://github.com/jaxxa/StarWarsFFG/tree/master). )",
"main": "index.js",
"scripts": {
"compile": "gulp css",
"watch": "gulp",
"prettier": "prettier --quote-props=preserve --print-width=5000 --write"
},
"author": "",
"license": "MIT",
"devDependencies": {
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^2.6.5",
"husky": "4.2.5",
"lint-staged": "10.2.11",
"prettier": "2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,html}": "prettier --quote-props=preserve --print-width=5000 --write"
},
"dependencies": {}
}