bolt/package.json

31 lines
723 B
JSON
Raw Normal View History

2020-02-24 10:02:16 +01:00
{
"name": "@samvv/bolt",
"version": "0.0.1",
"description": "A programming language for rapid prototyping",
"main": "lib/index.js",
"bin": {
"bolt": "lib/bin/bolt.js"
},
2020-02-24 10:02:16 +01:00
"scripts": {
"test": "mocha lib/test"
},
"author": "Sam Vervaeck <vervaeck.sam@skynet.be>",
"license": "GPL-3.0",
"repository": "https://github.com/samvv/Bolt",
"dependencies": {
"@types/node": "^13.7.4",
2020-02-24 17:23:38 +01:00
"@types/yargs": "^15.0.3",
"glob": "^7.1.6",
"pegjs": "^0.11.0-master.b7b87ea",
"reflect-metadata": "^0.1.13",
"xregexp": "^4.3.0",
"yargs": "^15.1.0"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"chai": "^4.2.0",
"mocha": "^7.0.1"
}
2020-02-24 10:02:16 +01:00
}