-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.39 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
{
"name": "@ayogohealth/ay-carousel",
"copyright": "Copyright 2017 Ayogo Health Inc.",
"license": "MIT",
"author": "Ayogo Health Inc. <[email protected]>",
"contributors": [
"Adam Vernon <[email protected]>",
"Darryl Pogue <[email protected]>",
"Raul Souza <[email protected]>",
"Sam Evanuk <[email protected]>",
"Stacey Vachon <[email protected]>"
],
"homepage": "http://ayogo.com",
"version": "2.7.4",
"description": "Carousel Component",
"repository": {
"type": "git",
"url": "git+https://github.com/AyogoHealth/ay-carousel.git"
},
"main": "dist/index.js",
"devDependencies": {
"@types/angular": "^1.6.56",
"angular": "^1.7.9",
"rollup": "^2.15.0",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-sourcemaps": "^0.6.2",
"sirv-cli": "^1.0.11",
"typescript": "^4.0.5"
},
"scripts": {
"start": "npm run demo",
"demo": "sirv",
"build:es6": "tsc -p tsconfig.es6.json",
"build:es5:base": "tsc -p tsconfig.es5.json && rollup dist-es5/index.js -n Carousel -c rollup.config.js -o dist/index.js",
"build:es5:ng1": "tsc -p tsconfig.es5.json && rollup dist-es5/angular1.js -n ayCarousel -c rollup.config.js -o dist/angular1.js",
"build:es5": "npm run build:es5:base && npm run build:es5:ng1",
"build": "npm run build:es6 && npm run build:es5",
"version": "npm run build && git add -A dist dist-es6"
}
}