-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.71 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "type-ops",
"version": "3.0.3",
"description": "Type-ops -- type-level operators for TypeScript",
"keywords": [
"typescript",
"types",
"type-level",
"operator",
"testing"
],
"author": "Alexey Gorishny",
"license": "MIT",
"homepage": "https://npm.im/type-ops",
"repository": "github:0x414c/type-ops",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/index.*",
"dist/doc",
"dist/type-ops"
],
"devDependencies": {
"ava": "^1.2.1",
"doctoc": "^1.4.0",
"shx": "^0.3.2",
"tslint": "^5.13.0",
"typedoc": "^0.14.2",
"typescript": "^3.3.3333"
},
"scripts": {
"tslint": "tslint --config ./tslint.json --exclude ./node_modules/**/* --force --project ./tsconfig.json ./src/**/*.ts",
"tsc": "tsc --build ./tsconfig.json",
"tsc:watch": "npm run tsc -- --watch",
"ava": "ava",
"ava:watch": "npm run ava -- --watch",
"typedoc": "typedoc --exclude ./src/test/**/* --out ./dist/doc --mode modules --module CommonJS --target ES5 ./src",
"doctoc": "doctoc --github --title \"**Table of contents**\" --maxlevel 4 ./README.md",
"lint": "npm run tslint",
"dist:build": "npm run tsc",
"dist:build:test": "npm run dist:build && npm run dist:test",
"dist:clean": "shx rm -rf ./dist",
"dist:test": "npm run ava",
"dist:doc": "npm run typedoc",
"doc:readme": "npm run doctoc",
"dist:package": "shx cp ./LICENSE.txt ./dist && shx cp ./README.md ./dist",
"all": "npm run lint && npm run dist:build:test && npm run dist:doc && npm run doc:readme && npm run dist:package"
},
"ava": {
"files": [
"./dist/test/**/*.js",
"!**/_support/**/*"
],
"verbose": true
}
}