-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.14 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
{
"name": "@twuni/recipe-book",
"version": "0.1.0",
"description": "An app for home cooks to view and manage recipes in the kitchen.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/twuni/recipe-book.git"
},
"author": {
"email": "[email protected]",
"name": "Devin Canterberry"
},
"license": "MIT",
"scripts": {
"build": "webpack --mode production --output lib/index.js",
"docs": "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": "nyc --silent --check-coverage --lines 100 --statements 100 --functions 100 --branches 100 mocha --require @babel/register src/**/spec.js"
},
"devDependencies": {
"@babel/core": "7.6.4",
"@babel/preset-env": "7.6.3",
"@babel/register": "7.6.2",
"chai": "4.2.0",
"eslint": "6.6.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2",
"jsdoc": "3.6.3",
"jsdom": "15.2.0",
"mocha": "6.2.2",
"nyc": "14.1.1",
"webpack": "4.41.2",
"webpack-cli": "3.3.10"
}
}