forked from whscullin/apple2js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1013 Bytes
/
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
{
"name": "apple2js",
"version": "0.0.1",
"description": "Apple II Emulator in JavaScript",
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack-dev-server",
"index": "scripts/index.pl > json/disks/index.js",
"lint": "eslint js",
"start": "webpack-dev-server",
"test": "jest"
},
"engines": {
"node": ">= 6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whscullin/apple2js.git"
},
"author": "Will Scullin",
"license": "MIT",
"bugs": {
"url": "https://github.com/whscullin/apple2js/issues"
},
"homepage": "https://github.com/whscullin/apple2js#readme",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"ajv": "^6.9.2",
"babel-jest": "^24.5.0",
"eslint": "^5.16.0",
"handlebars": "^4.5.3",
"jest": "^24.8.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"micromodal": "^0.3.2"
}
}