-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.25 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
{
"name": "justabs",
"version": "0.2.0",
"description": "Just tabs... Nothing else.",
"main": "./dist/js/index.js",
"scripts": {
"watch:js": "./node_modules/.bin/babel src/js --watch --out-dir dist/js",
"watch:css": "npm run build:css && node-sass --output-style compressed --watch src/scss/style.scss dist/css/justabs.min.css",
"build:js": "./node_modules/.bin/babel src/js --out-dir dist/js",
"build:css": "node-sass --output-style compressed src/scss/style.scss dist/css/justabs.min.css",
"build": "npm run build:js && npm run build:css",
"server": "live-server --port=4000",
"dev": "concurrently 'npm run server' 'npm run watch:js' 'npm run watch:css'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lkjimy/justabs.git"
},
"keywords": [
"tabs",
"navs"
],
"author": "lkjimy",
"license": "MIT",
"bugs": {
"url": "https://github.com/lkjimy/justabs/issues"
},
"homepage": "https://github.com/lkjimy/justabs#readme",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"concurrently": "^5.3.0",
"live-server": "^1.2.1",
"node-sass": "^4.13.0"
},
"dependencies": {
"@babel/polyfill": "^7.6.0"
}
}