forked from rhali786/test-ie-lit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 2.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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "ui-login",
"version": "1.0.0",
"description": "code, wiki etc.",
"main": "app.js",
"scripts": {
"dev": "node ./tasks/dev.js",
"build": "node ./tasks/build.js",
"test": "riteway ./*.test.js",
"scss": "node-sass --watch lib/scss -o lib/css",
"bootstrap": "npm-run-all css-compile css-prefix",
"css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 /lib/bootstrap/scss/bootstrap.scss dist/css/bootstrap.css && node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 /lib/bootstrap/scss/bootstrap-grid.scss dist/css/bootstrap-grid.css && node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 /lib/bootstrap/scss/bootstrap-reboot.scss dist/css/bootstrap-reboot.css && npm run css-copy",
"css-minify": "cleancss --level 1 --format breaksWith=lf --source-map --source-map-inline-sources --output dist/css/bootstrap.min.css dist/css/bootstrap.css && cleancss --level 1 --format breaksWith=lf --source-map --source-map-inline-sources --output dist/css/bootstrap-grid.min.css dist/css/bootstrap-grid.css && cleancss --level 1 --format breaksWith=lf --source-map --source-map-inline-sources --output dist/css/bootstrap-reboot.min.css dist/css/bootstrap-reboot.css"
},
"browserslist": [
"since 2018"
],
"babel": {
"presets": [
"@babel/preset-env"
]
},
"repository": {
"type": "git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/preset-env": "^7.5.5",
"debug": "^4.1.1",
"lit-element": "^2.1.0",
"node-sass": "^4.12.0",
"parcel-bundler": "^1.12.3",
"riteway": "^6.0.3",
"tap-difflet": "^0.7.1",
"tape": "^4.10.1"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@webcomponents/webcomponentsjs": "^2.2.10",
"browser-sync": "^2.26.5",
"core-js": "^3.1.4",
"fs-extra": "^8.0.1",
"inherits": "^2.0.4",
"regenerator-runtime": "^0.13.3",
"router5": "^7.0.2",
"router5-plugin-browser": "^7.0.2",
"scss": "^0.2.4"
}
}