bolt/package.json

39 lines
825 B
JSON
Raw Normal View History

{
"name": "@samvv/bolt",
"version": "0.0.1",
"description": "A new programming language for the web",
"main": "lib/index.js",
"bin": {
"bolt": "lib/bin/bolt.js"
},
"scripts": {
2022-09-08 15:58:08 +02:00
"test": "node ./lib/bin/bolt-selftest.js run"
},
"repository": {
"type": "git",
"url": "https://github.com/BoltJS"
},
"keywords": [
"programming-language",
"productivity",
"development",
"performance"
],
"author": "Sam Vervaeck",
"license": "MIT",
"dependencies": {
"commander": "^9.4.0",
"source-map-support": "^0.5.21",
"tslib": "^2.4.0",
"yagl": "^0.5.1"
},
"devDependencies": {
"@types/commonmark": "^0.27.5",
"@types/glob": "^8.0.0",
"@types/node": "^18.7.15",
2022-09-08 15:58:08 +02:00
"@types/yargs": "^17.0.12",
"commonmark": "^0.30.0",
"glob": "^8.0.3"
}
}