-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.4 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
{
"name": "jarm",
"version": "0.4.6",
"description": "Jarm is JSON-API Relational Mapping -- an ORM layer for Node.js apps.",
"main": "index.js",
"repository": "https://github.com/twuni/jarm",
"author": {
"email": "[email protected]",
"name": "Devin Canterberry"
},
"license": "MIT",
"scripts": {
"build": "rm -fR 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 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"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/plugin-proposal-class-properties": "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.2.2",
"eslint-plugin-ante": "1.0.3",
"jsdoc": "3.6.3",
"mocha": "6.2.0",
"nyc": "14.1.1",
"regenerator-runtime": "0.13.3",
"sinon": "7.4.1",
"sinon-chai": "3.3.0"
}
}