unitfile-parser/package.json

24 lines
426 B
JSON
Raw Normal View History

2020-11-25 02:11:59 +00:00
{
2020-11-25 14:30:04 +00:00
"name": "unitfile-parser",
2020-11-25 15:29:32 +00:00
"version": "1.0.3",
2020-11-25 02:11:59 +00:00
"description": "Parse systemd unit files",
2020-11-25 15:29:32 +00:00
"main": "./src/mod.mjs",
"exports": "./src/mod.mjs",
2020-11-25 02:11:59 +00:00
"scripts": {
2020-11-25 13:26:24 +00:00
"test": "./scripts/run-tests"
2020-11-25 02:11:59 +00:00
},
2020-11-25 15:32:10 +00:00
"keywords": [
"systemd",
"unit",
"file",
"parse",
"parser",
"ast"
],
"author": "b12f",
2020-11-25 14:27:51 +00:00
"license": "GPL-3.0-or-later",
2020-11-25 02:11:59 +00:00
"dependencies": {
"chevrotain": "^7.0.3"
2020-11-25 14:27:51 +00:00
}
2020-11-25 02:11:59 +00:00
}