-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 845 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 845 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
{
"name": "@attrs/modal",
"version": "0.2.1",
"description": "modal",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": "attrs/modal",
"author": "joje <joje.attrs@gmail.com>",
"homepage": "https://github.com/attrs/modal",
"license": "MIT",
"scripts": {
"prepublishOnly": "npm run dist",
"dist": "rimraf lib && cpx \"src/**/*.css\" lib && tsc",
"watch": "concurrently \"npm:watch:*\"",
"watch:ts": "tsc -w",
"watch:fs": "cpx \"src/**/*.css\" lib --watch",
"format": "prettier --write \"src/**/*.ts\""
},
"devDependencies": {
"concurrently": "^5.2.0",
"cpx": "^1.5.0",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node": "^7.0.1",
"tslint": "^5.20.1",
"typescript": "^3.8.3"
},
"files": [
"dist",
"lib",
"LICENSE",
"README.md"
]
}