1
0
mirror of https://github.com/uetchy/namae.git synced 2025-03-17 20:40:32 +09:00
namae/api/package.json

28 lines
571 B
JSON
Raw Normal View History

2019-07-31 13:11:00 +09:00
{
2019-07-31 13:40:29 +09:00
"name": "@namae/api",
2019-07-31 13:11:00 +09:00
"version": "0.1.0",
2019-08-03 00:35:23 +09:00
"scripts": {
2019-08-30 16:40:22 +09:00
"build": "tsc",
2019-12-24 01:57:07 +09:00
"lint": "eslint . --ext .ts,.tsx --format visualstudio --fix",
2019-08-30 16:40:22 +09:00
"start": "tsc -w",
"test": "jest --coverage"
2019-08-03 00:35:23 +09:00
},
2019-07-31 13:11:00 +09:00
"dependencies": {
2020-02-08 19:43:22 +09:00
"node-fetch": "^2.6.0",
2020-02-24 16:42:03 +09:00
"npm-name": "^6.0.0",
2019-07-31 13:11:00 +09:00
"whois-json": "^2.0.4"
2019-07-31 13:40:29 +09:00
},
2019-08-14 19:55:28 +09:00
"devDependencies": {
2020-02-24 16:42:03 +09:00
"@types/jest": "^25.1.3",
"@types/node": "^13.7.4",
"@types/node-fetch": "^2.5.5",
2019-08-27 03:15:35 +09:00
"jest": "^24.9.0",
"nock": "^12.0.2",
2020-02-24 16:42:03 +09:00
"ts-jest": "^25.2.1"
2019-08-14 19:55:28 +09:00
},
2020-01-07 11:59:25 +09:00
"engines": {
"node": ">=10.0.0"
},
2019-07-31 13:40:29 +09:00
"private": true
2019-07-31 13:11:00 +09:00
}