-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.49 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
{
"name": "@blockmason/link-sdk",
"version": "0.1.6",
"description": "Convenience library for accessing an API hosted on Blockmason Link.",
"main": "index.js",
"repository": "https://github.com/blockmason/link-sdk.js",
"author": {
"email": "devin@blockmason.io",
"name": "Devin Canterberry"
},
"license": "MIT",
"publishConfig": {
"repository": "git@github.com:blockmason/link-sdk.js.package.git"
},
"scripts": {
"build": "rm -vfR lib; babel --only '**/index.js' --no-comments --compact true --minified --source-maps false --out-dir lib src; cp -vfR package.json yarn.lock README.md LICENSE.md lib/",
"clean": "rm -fR lib docs .nyc_output",
"coverage": "nyc report",
"documentation": "rm -fR docs; (cd src; find . -type f -name index.js | xargs jsdoc --destination ../docs --package ../package.json --readme ../README.md)",
"lint": "eslint src",
"test": "find src -type f -name spec.js | xargs nyc --silent --check-coverage --lines 100 --per-file mocha --require @babel/register src/spec.setup.js"
},
"dependencies": {
"regenerator-runtime": "0.13.3"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"@babel/register": "7.5.5",
"babel-eslint": "10.0.3",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"eslint": "6.3.0",
"eslint-plugin-ante": "1.0.3",
"jsdoc": "3.6.3",
"mocha": "6.2.0",
"nyc": "14.1.1",
"sinon": "7.4.2",
"sinon-chai": "3.3.0"
}
}