-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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": "themur",
"version": "0.3.1",
"description": "A vanilla JavaScript theme switcher",
"main": "dist/themur.umd.js",
"module": "dist/themur.esm.js",
"browser": "dist/themur.min.js",
"repository": {
"type": "git",
"url": "https://github.com/levimcg/themur"
},
"bugs": {
"url": "https://github.com/levimcg/themur/issues"
},
"scripts": {
"start": "npm run dev",
"dev": "run-p js:watch serve",
"serve": "npx serve demo",
"js": "npx rollup --config",
"js:watch": "npx rollup --config -w",
"js:minify": "uglifyjs dist/themur.min.js -o dist/themur.min.js -m -c --comments /@version/",
"clean": "rm -rf dist/",
"build": "npm run clean && npx rollup --config && npm run js:minify",
"deploy": "npx gh-pages -d demo",
"prepublishOnly": "npm run build"
},
"author": "Levi McGranahan",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"gh-pages": "^2.0.1",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-node-resolve": "^4.0.0",
"serve": "^10.1.1",
"uglify-js": "^3.5.4"
},
"files": [
"dist"
]
}