memiens/package.json

32 lines
617 B
JSON
Raw Normal View History

2019-03-09 18:21:36 +01:00
{
"name": "memiens",
2022-03-15 12:39:49 +01:00
"version": "1.1.1",
2020-11-17 21:11:39 +01:00
"description": "Yaml config utility",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
2019-03-09 18:21:36 +01:00
"scripts": {
"build": "tsc",
2022-03-15 12:39:49 +01:00
"test": "pnpm run build && mocha",
2020-11-17 21:11:39 +01:00
"prepublishOnly": "rm -rf lib && npm run test"
2019-03-09 18:21:36 +01:00
},
2020-11-17 21:11:39 +01:00
"keywords": [
"yaml",
"config",
"utility"
],
"author": {
"email": "hi@nicco.io",
"name": "Niccolo Borgioli",
"url": "https://nicco.io"
2019-03-09 18:21:36 +01:00
},
"license": "MIT",
"dependencies": {
2022-03-15 12:39:49 +01:00
"yaml": "^1.10.2"
2019-03-09 18:21:36 +01:00
},
"devDependencies": {
2022-03-15 12:39:49 +01:00
"@types/node": "16",
"mocha": "^9.2.2",
"typescript": "^4.6.2"
2019-03-09 18:21:36 +01:00
}
}