-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
32 lines (32 loc) · 923 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
{
"name": "@aoneill01/gamebuino-emulator",
"version": "1.1.0",
"description": "Library to emulate a Gamebuino.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"build": "node ./node_modules/webpack/bin/webpack",
"start": "webpack-dev-server --config webpack.config.js"
},
"author": "Andy O'Neill <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/aoneill01/gamebuino-emulator.git"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"@types/node": "^7.0.5",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"ts-loader": "^5.2.1",
"ts-node": "^7.0.1",
"typescript": "^3.1.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.7.1",
"webpack-uglify-js-plugin": "^1.1.9"
}
}