2022-08-28 21:12:25 +02:00
|
|
|
{
|
|
|
|
"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"
|
2022-08-28 21:12:25 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/BoltJS"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"programming-language",
|
|
|
|
"productivity",
|
|
|
|
"development",
|
|
|
|
"performance"
|
|
|
|
],
|
|
|
|
"author": "Sam Vervaeck",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
|
|
|
"source-map-support": "^0.5.21",
|
|
|
|
"tslib": "^2.4.0",
|
2022-09-06 15:13:07 +02:00
|
|
|
"yagl": "^0.5.1",
|
2022-08-28 21:12:25 +02:00
|
|
|
"yargs": "^17.5.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-09-10 17:46:37 +02:00
|
|
|
"@types/commonmark": "^0.27.5",
|
|
|
|
"@types/glob": "^8.0.0",
|
2022-09-06 15:13:07 +02:00
|
|
|
"@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"
|
2022-08-28 21:12:25 +02:00
|
|
|
}
|
|
|
|
}
|