-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1011 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
{
"name": "tsutil",
"version": "1.0.0",
"description": "Util library for projects developed in Typescript.",
"author": "Joao Araujo (jocafi)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jocafi/tsutil"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p ./config/tsconfig.json",
"build-test": "tsc -p ./config/tsconfig.test.json",
"clean": "rimraf lib",
"clean-all": "rimraf lib && rimraf build && rimraf coverage",
"test": "karma start",
"tslint": "tslint -c ./config/tslint.json -p ./config/tsconfig.json",
"tslint-fix": "tslint --fix -c ./config/tslint.json -p ./config/tsconfig.json"
},
"dependencies": {},
"devDependencies": {
"@types/jasmine": "^3.3.13",
"@types/node": "^12.0.4",
"jasmine-core": "^3.4.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-typescript": "^4.1.0",
"typescript": "^3.5.1"
}
}