-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.51 KB
/
package.json
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "node-basic-lang",
"version": "0.0.10",
"description": "BASIC interpreter",
"main": "./lib/index.js",
"scripts": {
"build": "./node_modules/.bin/webpack",
"build:watch": "./node_modules/.bin/webpack --watch",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint ./src/**/*.* --fix",
"start": "node ./lib/main.js",
"test": "jest --forceExit"
},
"repository": "git+https://github.com/jesselpalmer/BASIC.git",
"engines": {
"node": ">=16"
},
"keywords": [
"BASIC",
"BASIC interpreter",
"BASIC lang",
"BASIC language"
],
"author": "Jesse Palmer <[email protected]> (https://jesselpalmer.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jesselpalmer/BASIC/issues"
},
"homepage": "https://github.com/jesselpalmer/BASIC#readme",
"bin": {
"basic": "./bin/basic"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.13.10",
"babel-loader": "^9.1.0",
"eslint": "^8.29.0",
"eslint-config-google": "^0.14.0",
"jest": "^29.3.1",
"webpack": "^5.27.1",
"webpack-cli": "^5.0.0"
},
"preferGlobal": true,
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"testPathIgnorePatterns": [
"./lib"
]
},
"private": false,
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jesselpalmer"
}
}