-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 990 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 990 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
32
33
34
35
36
{
"name": "@amnisio/typewriter",
"version": "0.0.34",
"description": "The transpiler used to convert TypeScript to C for AmnisIO",
"files": [
"dist",
"dist/emitter",
"dist/contexts",
"bin"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": "bin/typewriter.js",
"author": "Sudarsan Balaji<Sudarsan.Balaji@outlook.com>",
"license": "MIT",
"scripts": {
"start": "tsc",
"build": "tsc",
"test": "tsc && node bin/typewriter.js --file tests/app.ts --outfile tests/app.c",
"debug": "tsc && node --nolazy --inspect-brk=9229 bin/typewriter.js --file tests/app.ts --outfile tests/app.c"
},
"devDependencies": {
"@amnisio/arduino-uno": "^3.0.0",
"@amnisio/rivulet": "^3.0.0",
"@types/node": "^7.0.34",
"@types/ramda": "^0.24.1"
},
"dependencies": {
"change-case": "^3.0.1",
"fs": "^0.0.1-security",
"path": "^0.12.7",
"ramda": "^0.24.1",
"typescript": "^2.4.1",
"yargs": "^8.0.2"
}
}