-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "js-optchain",
"version": "2.0.8",
"description": "JS schema-based optional chaining",
"main": "./dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"prepublish": "yarn build",
"test": "mocha --require @babel/polyfill --require @babel/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jtaylorchang/js-optchain.git"
},
"keywords": [
"js",
"javascript",
"optchain",
"optional",
"chaining",
"schema"
],
"author": "Jeff Taylor-Chang",
"license": "MIT",
"bugs": {
"url": "https://github.com/jtaylorchang/js-optchain/issues"
},
"homepage": "https://github.com/jtaylorchang/js-optchain#readme",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/polyfill": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@types/chai": "^4.2.13",
"chai": "^4.2.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"mocha": "^8.1.3",
"prettier": "^2.1.2"
},
"dependencies": {}
}