-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 729 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 729 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": "salliedforth",
"version": "0.0.4",
"description": "Great big Forth for JavaScript",
"author": "Joc",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/jococo/sallied-forth.git"
},
"main": "salliedforth.js",
"scripts": {
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"build": "webpack --config webpack.config.js",
"start": "ws"
},
"keywords": [
"forth",
"repl",
"js"
],
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.0.0",
"local-web-server": "^0.5.15",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
}
}