-
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) · 753 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 753 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": "radiance-lang",
"version": "0.2.0",
"description": "Easy to write language that compiles to WASM",
"main": "dist/radiance.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --verbose",
"build": "rollup -c",
"prepublish": "rollup -c"
},
"bin": {
"radiance" : "./bin/cli.js"
},
"devDependencies": {
"@types/jest": "^25.2.2",
"@types/node": "^13.13.0",
"jest": "^26.0.1",
"rollup": "^2.6.1",
"rollup-plugin-typescript2": "^0.27.0",
"ts-jest": "^26.0.0",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"keywords": [
"wasm",
"webassembly",
"js",
"ts",
"radiance",
"radiancelang"
],
"author": "shortercode",
"license": "MIT",
"dependencies": {}
}