-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 1.21 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
{
"name": "@nahanil/namesilo",
"version": "0.0.4",
"description": "Interact with the NameSilo API",
"main": "index.js",
"scripts": {
"test": "npm run test:unit",
"test:unit": "jest test/unit",
"test:integration": "npm test && jest test/integration",
"test:integration:only": "jest test/integration",
"dev": "jest --watch test/unit",
"coverage": "jest --coverage test/unit",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"build": "npm test && npm run readme",
"readme": "node ./.namesilo/doc.js && cat .namesilo/README.md > README.md && doxdox -l markdown ./lib -i lib/utils.js | sed -e 's/# lib.xx_autogen.js/ Autogenerated Methods/g' | grep -v 'namesilo.js' >> README.md"
},
"author": "Jarrod Linahan",
"license": "ISC",
"dependencies": {
"axios": "^0.22.0",
"xml2json": "^0.12.0"
},
"devDependencies": {
"coveralls": "^3.0.3",
"doxdox": "^3.0.0",
"jest": "^24.8.0",
"uuid": "^3.3.2"
},
"repository": {
"type": "git",
"url": "git://github.com/nahanil/node-namesilo.git"
},
"bugs": {
"url": "https://github.com/nahanil/node-namesilo/issues"
},
"homepage": "https://github.com/nahanil/node-namesilo"
}