-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "yuki-js",
"version": "0.0.11",
"description": "A tiny subset of JavaScript with configurable constraints for creating fantasy consoles",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc && node ./dist/build/build-lib-script",
"build-examples": "npm run build && node ./dist/build/build-examples",
"test": "npm run build && mocha ./dist/test",
"coverage": "npm run build && nyc --reporter=html --reporter=text mocha ./dist/test"
},
"nyc": {
"exclude": [
"./dist/test"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nrkn/yuki-js.git"
},
"keywords": [
"compile", "fantasy", "console", "fantasy console", "subset", "memory",
"constraints", "yuki"
],
"author": "Nik Coughlin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nrkn/yuki-js/issues"
},
"homepage": "https://github.com/nrkn/yuki-js#readme",
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.12",
"mocha": "^5.2.0"
},
"dependencies": {
"@types/escodegen": "0.0.6",
"@types/esprima": "^4.0.2",
"@types/estraverse": "0.0.6",
"bits-bytes": "^0.2.0",
"escodegen": "^1.11.1",
"esprima": "^4.0.1",
"estraverse": "^4.2.0"
}
}