-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "blm-banner",
"version": "1.0.0",
"description": "BLM banner for your website",
"main": "src/index.ts",
"dependencies": {
"es-cookie": "^1.3.2",
"micromodal": "^0.4.6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@rollup/plugin-typescript": "^4.1.2",
"@types/micromodal": "^0.3.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"prettier": "^2.0.5",
"rollup": "^2.14.0",
"rollup-plugin-uglify": "^6.0.4",
"tslib": "^2.0.0",
"typescript": "^3.9.5"
},
"scripts": {
"build": "rollup src/index.ts --config rollup.config.js",
"build:production": "NODE_ENV=production rollup src/index.ts --config rollup.config.prod.js",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --single-quote --trailing-comma all --write src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/draftedus/blm-banner.git"
},
"keywords": [
"BLM",
"black",
"lives",
"matter",
"banner"
],
"author": "Drafted, Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/draftedus/blm-banner/issues"
},
"homepage": "https://github.com/draftedus/blm-banner#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,js}": "prettier --single-quote --trailing-comma all --write"
}
}