-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 786 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 786 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
{
"name": "tetrix",
"version": "0.0.0",
"description": "Tetris in reasonml",
"main": "index.js",
"scripts": {
"start": "./lib/bs/bytecode/indexhot.byte",
"start:native": "./lib/bs/native/index.native",
"build": "bsb -make-world",
"build:web": "bsb -make-world -backend js",
"build:native": "bsb -make-world -backend native",
"clean": "bsb -clean-world",
"webpack": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goodcodedev/tetris.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"Reasongl": "bsansouci/reasongl"
},
"devDependencies": {
"bsb-native": "4.0.6",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^4.1.0",
"webpack-cli": "^2.0.10"
}
}