-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1008 Bytes
/
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
{
"name": "as-events",
"version": "0.1.4",
"description": "EventEmitter for AssemblyScript",
"main": "index.js",
"types": "./assembly/index.ts",
"ascMain": "./assembly/index.ts",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/assemblyscript-community/as-events.git"
},
"keywords": [
"assemblyscript",
"event",
"EventEmitter",
"emitter"
],
"scripts": {
"asbuild:untouched": "asc assembly/index.ts --target debug",
"asbuild:optimized": "asc assembly/index.ts --target release",
"asbuild": "npm run asbuild:untouched && npm run asbuild:optimized",
"test": "node tests"
},
"devDependencies": {
"@assemblyscript/loader": "^0.18.24",
"assemblyscript": "^0.18.24"
},
"author": "JairusSW",
"license": "MIT",
"bugs": {
"url": "https://github.com/assemblyscript-community/as-events/issues"
},
"homepage": "https://github.com/assemblyscript-community/as-events#readme"
}