-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 761 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 761 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
{
"name": "json2dataclass",
"version": "1.0.0",
"source": "src/index.ts",
"main": "dist/bundle.js",
"license": "MIT",
"author": {
"name": "Russ Biggs",
"url": "https://russbiggs.com"
},
"scripts": {
"build-css": "node-sass --include-path scss src/scss/main.scss dist/style.css --output-style compressed",
"build": "microbundle -f cjs && cp src/index.html dist/index.html && cp -r static/ dist && yarn run build-css"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.28",
"@typescript-eslint/parser": "^2.28",
"eslint": "^6.8",
"microbundle": "^0.11",
"node-sass": "^4.13",
"typescript": "^3.8"
},
"dependencies": {}
}