-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
30 lines (30 loc) · 939 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
{
"name": "type-guards",
"version": "0.15.0",
"description": "A strongly-typed utility for runtime type checks.",
"main": "./dist/cjs/index.js",
"es2015": "./dist/es2015/index.js",
"module": "./dist/es2015/index.js",
"typings": "./dist/es2015/index.d.ts",
"repository": "https://github.com/lazarljubenovic/type-guards",
"author": "Lazar Ljubenović",
"license": "MIT",
"private": false,
"scripts": {
"build:es2015": "tsc -p tsconfig.es2015.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "rm -rf dist && yarn build:es2015 && yarn build:cjs",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"prepublish": "yarn build"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.1",
"chai": "^4.2.0",
"conditional-type-checks": "^1.0.5",
"mocha": "^7.1.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
}
}