-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "@kazzkiq/darkmode",
"version": "0.1.0",
"description": "A tiny library for handling dark mode on browsers.",
"main": "dist/darkmode.umd.js",
"module": "dist/darkmode.modern.module.js",
"types": "dist/darkmode.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "microbundle src/index.ts -f es,umd --name DarkMode --no-sourcemap",
"pretest": "npm run build",
"test": "kill-port 5001 && npm run test:server & npm run test:run",
"test:server": "http-server dist -s -p 5001",
"test:run": "cypress run --browser chrome --headless"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kazzkiq/darkmode.git"
},
"keywords": [
"dark",
"mode",
"darkmode"
],
"author": "Claudio Holanda Jr.",
"license": "MIT",
"bugs": {
"url": "https://github.com/kazzkiq/darkmode/issues"
},
"homepage": "https://github.com/kazzkiq/darkmode#readme",
"devDependencies": {
"cypress": "^4.5.0",
"http-server": "^0.12.3",
"kill-port": "^1.6.0",
"microbundle": "^0.11.0"
}
}