-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.29 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
43
{
"name": "hello-croquis",
"version": "0.1.19",
"description": "CSS+JS Frontend Framework based on Template System.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/seungrolee/croquis.git"
},
"keywords": [
"css",
"frontend",
"framework",
"component",
"template"
],
"author": "seungrodotlee",
"license": "MIT",
"bugs": {
"url": "https://github.com/seungrolee/croquis/issues"
},
"scripts": {
"build+publish": "npm build && npm publish",
"build:all": "npm run build && npm run build:sass",
"watch:all": "concurrently 'npm:watch' 'npm:watch:sass'",
"build": "./node_modules/.bin/webpack && cp ./demo/script/croquis.js ./dist/croquis.js",
"watch": "./node_modules/.bin/webpack --watch",
"build:sass": "sass src/sass/main.scss:dist/croquis.css && cp ./dist/croquis.css ./demo/style/croquis.css",
"watch:sass": "sass --watch src/sass/main.scss:demo/style/croquis.css"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-loader": "^8.1.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@babel/polyfill": "^7.11.5",
"@webcomponents/custom-elements": "^1.4.3",
"@webcomponents/webcomponentsjs": "^2.4.4"
}
}