-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 971 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
{
"name": "catastrophic",
"version": "1.0.0",
"description": "Auto completion and dependency injection friendly library for constructing modular unique permanent error codes",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"clean": "rm -rf ./build",
"release_build": "npm run clean && tsc --project deploy.tsconfig.json",
"dev_build": "tsc --watch --pretty --noEmitOnError",
"lint": "tslint --type-check --project tsconfig.json",
"test": "ava --verbose",
"dev_test": "ava --watch --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/OliverUv/catastrophic.git"
},
"keywords": [
"typescript",
"ts",
"error",
"throw",
"error code",
"auto completion"
],
"author": "Oliver Uvman <[email protected]> (http://vvv.uvman.se/)",
"license": "Apache-2.0",
"devDependencies": {
"ava": "^0.18.2",
"tslint": "^3.15.1",
"typescript": "^2.3.2"
}
}