-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
93 lines (93 loc) · 2.55 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "ohm-js-editor",
"type": "module",
"version": "0.1.0",
"description": "An IDE for the Ohm language (JavaScript edition)",
"author": "Patrick Dubroy <[email protected]>",
"scripts": {
"build": "webpack --mode production",
"lint": "eslint . --ext .js,.vue",
"build-visualizer": "bash bin/build-visualizer.sh",
"ci-test": "npm run lint && npm test",
"format": "prettier --write . && npm run lint -- --fix",
"postinstall": "true",
"start": "webpack serve --mode development",
"test": "uvu test 'test-.*'",
"test:e2e": "npx playwright test --config=playwright.config.cjs",
"update-snapshots": "npm run test:e2e -- --update-snapshots"
},
"main": "index.js",
"devDependencies": {
"@playwright/test": "^1.31.2",
"@vue/test-utils": "1.2.2",
"checked-emitter": "^1.0.1",
"css-loader": "^0.26.0",
"eslint": "^8.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-camelcase-ohm": "^0.2.1",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-no-extension-in-require": "^0.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-tape": "^1.1.0",
"eslint-plugin-vue": "^7.19.1",
"file-loader": "^0.11.2",
"global-jsdom": "^8.7.0",
"jsdom": "^21.1.0",
"ohm-js": "^17.0.0",
"open": "6.0.0",
"prettier": "^2.4.1",
"uvu": "^0.5.6",
"vue": "^2.6.14",
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "es5"
},
"bin": {
"ohm-editor": "cli.js"
},
"bugs": "https://github.com/ohmjs/ohm-editor/issues",
"contributors": [
"Alex Warth <[email protected]> (http://tinlizzie.org/~awarth)",
"Marko Röder <[email protected]>",
"Meixian Li <[email protected]>",
"Saketh Kasibatla <[email protected]>"
],
"engines": {
"node": ">=4.0"
},
"greenkeeper": {
"ignore": [
"eslint",
"eslint-config-google",
"eslint-plugin-camelcase-ohm",
"eslint-plugin-html",
"eslint-plugin-no-extension-in-require",
"eslint-plugin-tape"
]
},
"homepage": "https://ohmjs.org/editor/",
"keywords": [
"editor",
"ide",
"javascript",
"ohm",
"ohm-js",
"semantics",
"visualizer",
"prototyping"
],
"license": "MIT",
"precommit": [
"lint"
],
"productName": "Ohm Editor",
"repository": "https://github.com/ohmjs/ohm-editor"
}