-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.58 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.58 KB
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
{
"name": "simpletalk",
"version": "0.0.1",
"description": "An ohm-js based implementation of a HyperTalk like environment.",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --require esm ./js/ohm/tests/ && ./js-tests.sh",
"test-grammar": "./node_modules/mocha/bin/mocha --require esm ./js/ohm/tests/",
"build-dev": "webpack --config ./webpack.config.js",
"eslint:check": "eslint --ext .js js",
"eslint:fix": "eslint --fix --ext .js js",
"serve-dev": "webpack --config ./webpack.config.js & nodemon --watch 'objects/build/*' --exec 'http-server --cors -p 8000'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UnitedLexCorp/SimpleTalk.git"
},
"keywords": [
"Ohm",
"HyperCard",
"HyperTalk",
"PEG"
],
"author": "UnitedLex Idea Factory Lab Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/UnitedLexCorp/SimpleTalk/issues"
},
"homepage": "https://github.com/UnitedLexCorp/SimpleTalk#readme",
"dependencies": {
"canvas": "^2.7.0",
"chai": "^4.2.0",
"esm": "^3.2.25",
"happy-dom": "^0.14.1",
"jsdom": "^16.3.0",
"jsdom-global": "^3.0.2",
"mocha": "^8.0.1",
"node-fetch": "^2.6.1",
"ohm-js": "^15.3.0",
"uuid": "^3.4.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"esm": "^3.2.25",
"http-server": "^14.1.1",
"mocha": "^8.0.1",
"nodemon": "^2.0.21"
}
}