-
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": "ombro",
"version": "0.0.4",
"description": "Create beautiful, dynamic shadows in JavaScript",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "rimraf ./dist && rollup -c",
"lint": "eslint ./src --ext .ts && tsc --noEmit -p .",
"prepublish": "npm run lint",
"doc": "node ./typedoc.gen.js"
},
"author": "Tamim Arafat <tamim.arafat@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/arafatamim/ombro.git"
},
"homepage": "https://arafatamim.github.io/ombro/",
"bugs": {
"url": "https://github.com/arafatamim/ombro/issues"
},
"keywords": ["shadow", "dom", "css"],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"esbuild": "^0.14.10",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.62.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-esbuild": "^4.8.2",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
}
}