-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "asdom",
"version": "0.2.2",
"type": "module",
"homepage": "https://lume.io",
"repository": {
"type": "git",
"url": "[email protected]:lume/asdom.git"
},
"bugs": {
"url": "https://github.com/lume/asdom/issues"
},
"scripts": {
"build": "npm run asbuild:untouched && npm run asbuild:optimized",
"build:example": "cd example && npm install && npm run build:untouched",
"asbuild:untouched": "asc assembly/index.ts --target debug",
"asbuild:optimized": "asc assembly/index.ts --target release",
"test": "node tests",
"format": "prettier . --write",
"release:patch": "npm version patch -m 'v%s' && npm publish && git push --follow-tags",
"release:minor": "npm version minor -m 'v%s' && npm publish && git push --follow-tags",
"release:major": "npm version major -m 'v%s' && npm publish && git push --follow-tags"
},
"dependencies": {
"@assemblyscript/loader": "^0.19.5"
},
"devDependencies": {
"assemblyscript": "^0.19.5",
"prettier": "^2.3.2",
"typescript": "^4.3.4"
},
"keywords": [
"assemblyscript",
"typescript",
"javascript",
"webassembly",
"html",
"dom"
]
}