-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.68 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
{
"name": "capsid-popper",
"version": "2.0.0",
"description": "capsid component for popper.js",
"main": "dist/index.js",
"source": "index.js",
"files": "dist",
"scripts": {
"test": "karma start",
"lint": "lynt",
"dist": "babel index.js > dist/index.js",
"codecov": "npm test && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/capsidjs/capsid-popper.git"
},
"keywords": [
"capsid",
"capsidmodule",
"popper"
],
"author": "Yoshiya Hinosawa",
"license": "MIT",
"bugs": {
"url": "https://github.com/capsidjs/capsid-popper/issues"
},
"homepage": "https://github.com/capsidjs/capsid-popper#readme",
"peerDependencies": {
"capsid": ">=0.29.1",
"popper.js": "^1.12.9"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-istanbul": "^6.0.0",
"babelify": "^10.0.0",
"browserify": "^16.1.1",
"capsid": "^0.29.1",
"codecov": "^3.0.0",
"genel": "^1.1.1",
"husky": "^4.0.2",
"karma": "^4.0.1",
"karma-browserify": "^7.0.0",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage": "^2.0.0",
"karma-kocha": "^1.9.1",
"kocha": "^1.9.1",
"lint-staged": "^10.0.3",
"lynt": "^0.5.5",
"nyc": "^14.0.0",
"popper.js": "^1.12.9",
"prettier": "^1.16.4"
},
"nyc": {
"reporter": [
"text",
"lcov"
]
},
"lint-staged": {
"*.js": [
"lynt --fix",
"prettier --write --no-semi --single-quote",
"git add"
]
},
"lynt": {
"ignore": ["dist/*.js"]
}
}