forked from zeh/dasmjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.09 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
{
"name": "dasm",
"version": "6.0.1",
"description": "An emscripten-compiled version of the dasm macro assembler",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "jest --testMatch **/test/**/*-test-*.js",
"test:coverage": "yarn test --coverage",
"test:watch": "yarn test --watchAll",
"build": "tsc --pretty",
"watch": "tsc --pretty --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeh/dasmjs.git"
},
"keywords": [
"dasm",
"assembler",
"assembly",
"emscripten",
"atari",
"6502",
"vcs",
"2600",
"6507"
],
"author": "Zeh Fernando",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/zeh/dasmjs/issues"
},
"homepage": "https://github.com/zeh/dasmjs#readme",
"babel": {
"presets": [
"es2015"
]
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-preset-es2015": "^6.22.0",
"core-js": "^2.4.1",
"jest": "^23.6.0",
"tslint": "^5.11.0",
"typescript": "^3.2.2"
},
"dependencies": {
"path": "^0.12.7"
}
}