-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 741 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 741 Bytes
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
{
"name": "@hspkg/chain",
"version": "1.0.1",
"description": "Partial implementation for Optional Chaining in ES5",
"main": "index.js",
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/int64ago/chain.git"
},
"keywords": [
"optional-chaining"
],
"author": "Cody Chan <int64ago@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/int64ago/chain/issues"
},
"homepage": "https://github.com/int64ago/chain#readme",
"devDependencies": {
"codecov": "^2.3.0",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^4.0.0"
}
}