Add many more dependencies to package.json
This commit is contained in:
parent
82c0959c14
commit
62f8ed2bca
2 changed files with 1230 additions and 1 deletions
1215
package-lock.json
generated
1215
package-lock.json
generated
File diff suppressed because it is too large
Load diff
16
package.json
16
package.json
|
@ -3,6 +3,9 @@
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"description": "A programming language for rapid prototyping",
|
"description": "A programming language for rapid prototyping",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
|
"bin": {
|
||||||
|
"bolt": "lib/bin/bolt.js"
|
||||||
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "mocha lib/test"
|
"test": "mocha lib/test"
|
||||||
},
|
},
|
||||||
|
@ -10,6 +13,17 @@
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"repository": "https://github.com/samvv/Bolt",
|
"repository": "https://github.com/samvv/Bolt",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"pegjs": "^0.11.0-master.b7b87ea"
|
"@types/node": "^13.7.4",
|
||||||
|
"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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue