-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "dont-go",
"version": "1.1.1",
"description": "Client-side library to change the title and/or favicon of the page when it is inactive",
"author": "Tiaan du Plessis @tiaanduplessis",
"license": "MIT",
"source": "src/index.js",
"main": "lib/dont-go.js",
"module": "lib/dont-go.m.js",
"browser": "lib/dont-go.umd.js",
"keywords": [
"title",
"favicon",
"dont-go"
],
"scripts": {
"start": "npm run build",
"build": "microbundle --name dontGo",
"dev": "microbundle watch --name dontGo",
"deploy": "npm run build;cp -f lib/dont-go.umd.js public/; gh-pages -d public",
"format": "prettier-standard src/index.js",
"lint": "standard --fix src/*.js",
"test": "npm run lint && npm run format"
},
"repository": {
"type": "git",
"url": "https://github.com/tiaanduplessis/dont-go.git"
},
"bugs": {
"url": "https://github.com/tiaanduplessis/dont-go/issues"
},
"files": [
"lib"
],
"homepage": "https://github.com/tiaanduplessis/dont-go",
"devDependencies": {
"gh-pages": "2.1.1",
"microbundle": "0.11.0",
"prettier-standard": "8.0.1",
"standard": "14.3.1"
}
}