-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 871 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 871 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
32
33
34
35
36
37
{
"name": "snowflakes",
"version": "1.0.0",
"description": "Adds snow effect to any page using WebGL.",
"main": "src/index.html",
"license": "MIT",
"scripts": {
"start": "parcel serve src/index.html",
"build": "yarn clear && rollup --config",
"clear": "rimraf dist && rimraf .cache",
"prettier": "prettier \"{src,test}/**/*.js\" --write"
},
"buble": {
"objectAssign": "Object.assign"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,test}/**/*.js": [
"prettier --write"
]
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"buble": "^0.20.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"parcel-bundler": "^1.12.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2"
}
}