-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
97 lines (97 loc) · 3.98 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "bootprompt",
"version": "6.0.2",
"description": "Wrappers for JavaScript alert(), confirm() and other flexible dialogs using the Bootstrap framework",
"directories": {
"test": "tests"
},
"scripts": {
"tsc": "tsc -p src/tsconfig.json --outDir build/js && echo 'export as namespace bootprompt;' >> build/js/bootprompt.d.ts",
"rollup": "rollup -c rollup.config.js",
"copy": "cp -p build/js/*.d.ts package.json README.md LICENSE.md build/dist",
"copy-docs": "npm run build && cp -rp docs/*.html build/docs/ && cp -rp docs/bootprompt build/docs/ && cp -rp build/dist/bootprompt.all.min.js build/docs/bootprompt",
"build": "npm run tsc && npm run rollup && npm run copy",
"typedoc": "typedoc --tsconfig src/tsconfig.json --name bootprompt --out build/docs/ --listInvalidSymbolLinks --excludePrivate --excludeNotExported --readme docs/api_intro.md",
"build-docs": "npm run typedoc && npm run copy-docs",
"start-doc-server": "lite-server",
"gh-pages": "npm run build-docs && mkdir -p build && (cd build; rm -rf gh-pages; git clone .. --branch gh-pages gh-pages) && find build/gh-pages/ -type f \\! -path 'build/gh-pages/.git/*' -delete && find build/gh-pages -type d -empty -delete && cp -rp build/docs/* build/gh-pages",
"lint": "tslint --format verbose -p src/tsconfig.json && tslint --format verbose -p tests/tsconfig.json && eslint *.js",
"test": "use-cdn && karma start --single-run",
"posttest": "npm run lint",
"build-and-test": "npm run build && npm test --",
"self:publish": "cd build/dist && npm publish",
"self:pack": "cd build/dist && npm pack && mv *.tgz ..",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md && versync -b sync -a",
"postversion": "npm run build-and-test && npm run self:publish",
"postpublish": "git push origin --follow-tags",
"clean": "rm -rf build"
},
"versionedSources": "src/bootprompt.ts",
"repository": {
"type": "git",
"url": "git://github.com/lddubeau/bootprompt.git"
},
"author": "Louis-Dominique Dubeau <[email protected]>",
"contributors": [
"Tieson Trowbridge <[email protected]>",
"Nick Payne <[email protected]>"
],
"license": "MIT",
"main": "bootprompt.js",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@types/bootstrap": "^4.5.1",
"@types/chai": "^4.2.14",
"@types/jquery": "^3.5.4",
"@types/mocha": "^7.0.2",
"@types/sinon": "^9.0.8",
"@types/sinon-chai": "^3.2.5",
"@use-cdn/cli": "^2.0.1",
"@use-cdn/karma": "^2.0.1",
"chai": "^4.2.0",
"conventional-changelog-cli": "^2.1.1",
"deepcopy": "^2.1.0",
"es6-promise": "^4.2.8",
"eslint": "^6.8.0",
"eslint-config-lddubeau-base": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-simple-import-sort": "^5.0.3",
"husky": "^4.3.0",
"karma": "^5.2.3",
"karma-browserstack-config": "^1.0.1",
"karma-browserstack-launcher": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-instrumenter": "^1.0.3",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript-agile-preprocessor": "^2.1.3",
"lite-server": "^2.6.1",
"mocha": "^7.2.0",
"popper.js": "^1.16.1",
"renovate-config-lddubeau": "^1.0.0",
"rollup": "^2.33.2",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^5.3.1",
"semver": "^7.3.2",
"sinon": "^7.5.0",
"sinon-chai": "^3.5.0",
"tslint": "^6.1.3",
"tslint-config-lddubeau": "^4.1.2",
"typedoc": "^0.19.2",
"typescript": "^3.9.7",
"versync": "^5.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
}
}