-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 871 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-command",
"version": "0.1.0",
"description": "Command line arguments parser for AssemblyScript",
"keywords": [
"assemblyscript",
"assemblyscript-library",
"command-line",
"cli",
"arguments",
"parser"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ubermanu/as-command.git"
},
"license": "MIT",
"author": "Emmanuel Vodor <manu@paca.happy-dev.fr>",
"type": "module",
"files": [
"assembly",
"index.ts"
],
"scripts": {
"checks": "asc ./assembly --noEmit --measure",
"test": "asp --verbose",
"test:summary": "asp --summary"
},
"prettier": "@ubermanu/prettier-config",
"devDependencies": {
"@as-pect/assembly": "^8.1.0",
"@as-pect/cli": "^8.1.0",
"@ubermanu/prettier-config": "^3.2.0",
"assemblyscript": "^0.27.9",
"prettier": "^3.0.3"
}
}