-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 870 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "basic-parser",
"version": "1.0.0",
"description": "A modern BASIC interpreter that runs right inside our browser.",
"main": "scanner.js",
"scripts": {
"build": "webpack",
"watch": "webpack --watch"
},
"author": "Nauman Umer <nmanumr@gmail.com> (https://nmanumr.github.io/)",
"license": "ISC",
"dependencies": {
"ordered-dict": "^0.0.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"webpack": "^4.12.2",
"webpack-cli": "^3.0.8",
"mocha": "^5.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nmanumr/easybasic-interpreter.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/nmanumr/easybasic-interpreter/issues"
},
"homepage": "https://github.com/nmanumr/easybasic-interpreter#readme"
}