-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
78 lines (78 loc) · 2.15 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
{
"name": "bs-custom-file-input",
"version": "1.3.4",
"description": "A little plugin for Bootstrap 4 custom file input",
"author": "Johann-S <[email protected]>",
"contributors": [
"XhmikosR <[email protected]>"
],
"main": "dist/bs-custom-file-input.js",
"types": "bs-custom-file-input.d.ts",
"bugs": {
"url": "https://github.com/Johann-S/bs-custom-file-input/issues"
},
"engines": {
"node": ">=8"
},
"scripts": {
"build": "rollup -c && rollup -c --environment PROD",
"deploy:docs": "shx cp -r dist/ demo/dist/",
"browserstack": "npm run build && cross-env browser=true karma start tests/karma.conf.js",
"dev": "rollup --environment DEV -c -w",
"js-lint": "eslint .",
"prejs-test": "rollup -c --environment TEST,NODE_ENV:test",
"js-test": "karma start tests/karma.conf.js",
"release": "standard-version -a",
"test": "npm run js-lint && npm run js-test"
},
"files": [
"dist/*.{js,map}",
"bs-custom-file-input.d.ts"
],
"keywords": [
"bootstrap",
"bootstrap 4",
"custom file input",
"vanillajs",
"react",
"angular"
],
"homepage": "https://github.com/Johann-S/bs-custom-file-input",
"repository": {
"type": "git",
"url": "git+https://github.com/Johann-S/bs-custom-file-input.git"
},
"license": "MIT",
"standard-version": {
"scripts": {
"postbump": "npm run build",
"precommit": "git add dist"
}
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.0.0",
"bootstrap": "^4.4.1",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"ip": "^1.1.5",
"karma": "^4.4.1",
"karma-browserstack-launcher": "1.4.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"mocha": "^7.1.1",
"rollup": "^2.1.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-uglify": "^6.0.4",
"shx": "^0.3.2",
"sinon": "^7.5.0",
"standard-version": "^8.0.1"
}
}