-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "hack_assembler_js",
"version": "0.0.0",
"description": "this is one of assemblers made of JavaScript(Node.js) for Hack language",
"main": "index.js",
"scripts": {
"start": "node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint --format stylish 'src/**/*.ts'",
"compile": "tsc",
"build": "yarn lint && yarn compile",
"push": "git push origin master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koolii/hack_assembler_js.git"
},
"keywords": [
"javascript",
"assember",
"hack",
"nand2tetris",
"typescript"
],
"author": "koolii",
"license": "MIT",
"bugs": {
"url": "https://github.com/koolii/hack_assembler_js/issues"
},
"homepage": "https://github.com/koolii/hack_assembler_js#readme",
"dependencies": {
"fs-extra": "^5.0.0",
"path": "^0.12.7",
"readline": "^1.3.0"
},
"devDependencies": {
"@types/es6-promise": "^3.3.0",
"@types/fs-extra": "^5.0.0",
"@types/node": "^9.4.0",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.5.0",
"tslint-loader": "^3.5.3",
"tslint-react": "^3.4.0",
"tsutils": "^2.20.0",
"typescript": "^2.7.1"
}
}