-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1003 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1003 Bytes
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
{
"name": "js-content-message",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"ts": "tsc --rootDir src/ts --outDir dist/js -w",
"postcss": "postcss dist/css/*.css -u autoprefixer --replace",
"sass": "sass --style=compressed src/scss:dist/css",
"scss": "onchange src/scss/*.scss -- run-s sass postcss",
"watch": "run-p scss ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pitolick/JavaScript-Content-Message.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pitolick/JavaScript-Content-Message/issues"
},
"homepage": "https://github.com/pitolick/JavaScript-Content-Message#readme",
"browserslist": [
"last 2 versions",
"> 1% in JP"
],
"devDependencies": {
"autoprefixer": "^9.8.6",
"browserslist": "^4.14.2",
"npm-run-all": "^4.1.5",
"onchange": "^7.0.2",
"postcss-cli": "^7.1.2",
"sass": "^1.26.10",
"typescript": "^4.0.2"
}
}