-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.3 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": "happy-states",
"version": "0.4.0",
"description": "Makes simple state management possible via `document.documentElement.classList`",
"main": "src/happystates.js",
"files": [
"src/happystates.js",
"dist/happystates.min.js"
],
"scripts": {
"build": "npm run prettier && npm run uglify && npm run docs",
"docs": "cp dist/happystates.min.js docs/happystates.min.js",
"uglify": "uglifyjs src/happystates.js -o dist/happystates.min.js --screw-ie8 --compress --mangle toplevel",
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "http-server -g",
"serve-docs": "http-server ./docs -g",
"prettier": "prettier --single-quote --write src/*.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jelmerdemaat/happy-states.git"
},
"keywords": [
"state",
"states",
"state management",
"state classes",
"state classlist",
"classlist"
],
"author": "Jelmer de Maat <[email protected]> (http://jelmerdemaat.nl)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/jelmerdemaat/happy-states/issues"
},
"homepage": "https://github.com/jelmerdemaat/happy-states#readme",
"devDependencies": {
"http-server": "^0.10.0",
"prettier": "^1.3.1",
"uglify-js": "^3.6.3"
}
}