-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
54
{
"name": "seatchart",
"version": "0.1.0",
"description": "Create beautiful designed seat maps.",
"main": "dist/seatchart.js",
"types": "dist/seatchart.d.ts",
"files": [
"dist/*"
],
"scripts": {
"test": "jest",
"lint": "eslint ./src --ext .ts,.js && stylelint src/seatchart.css",
"build": "gulp build",
"watch": "gulp watch",
"docs:build": "typedoc && cp ./CNAME ./docs/CNAME && cp ./examples/demo.html ./docs/demo.html",
"docs:deploy": "gh-pages --dist docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/omahili/seatchart.js.git"
},
"author": "Omar Mahili",
"license": "MIT",
"bugs": {
"url": "https://github.com/omahili/seatchart.js/issues"
},
"homepage": "http://omahili.github.io/seatchart.js/",
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"gh-pages": "^3.2.3",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"jest": "^27.5.1",
"prettier": "2.5.1",
"rollup": "^2.67.3",
"rollup-plugin-ts": "^2.0.5",
"stylelint": "^14.5.1",
"stylelint-config-standard": "^25.0.0",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"typedoc": "^0.22.12",
"typedoc-plugin-merge-modules": "^3.1.0",
"typescript": "^4.5.5"
}
}