-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.33 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": "ay-accordion",
"version": "2.1.3",
"copyright": "Copyright 2016 Ayogo Health Inc.",
"license": "MIT",
"homepage": "http://ayogo.com",
"author": "Ayogo Health Inc. <info@ayogo.com>",
"contributors": [
"Adam Vernon <adam@akineticblog.com>",
"Darryl Pogue <darryl@dpogue.ca>",
"Onataze Messiri <onataze@gmail.com>",
"Sam Evanuk <samevanuk@gmail.com>",
"Steven Stark <steven@stevenstark.com>",
"Tushar Kalra <tkalraoct31@gmail.com>"
],
"keywords": [
"accordion",
"browser",
"client-side"
],
"repository": "AyogoHealth/ay-accordion",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.es6.js",
"typings": "dist/index.d.ts",
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.22.0",
"eslint-plugin-header": "^3.0.0",
"rollup": "^4.22.4",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"typescript": "^5.2.2"
},
"scripts": {
"build": "tsc -p tsconfig.json && rollup dist/index.js -n ayAccordion -c rollup.config.js -o dist/index.js && cp src/index.ts dist/index.es6.js",
"lint": "eslint --ext .ts src",
"postversion": "git push && git push --tags",
"version": "npm run build && git add -A dist"
}
}