-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 951 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
{
"name": "asml-validator",
"version": "0.1.0",
"description": "Validator for Application State Modeling Language",
"main": "dist/index.js",
"author": "Saman Soltani (samansoltani.com)",
"license": "GPL-3.0-or-later",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "ts-node-dev --respawn src/test.ts",
"start:prod": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saman/asml-validator.git"
},
"bugs": {
"url": "https://github.com/saman/asml-validator/issues"
},
"devDependencies": {
"@types/node": "^13.13.2",
"ts-node": "^8.9.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3",
"@types/ajv": "^1.0.0",
"@types/uuid": "^8.3.0"
},
"homepage": "https://github.com/saman/rsm-node#readme",
"dependencies": {
"ajv": "^6.12.5",
"asml": "^1.0.0",
"uuid": "^8.3.0"
}
}