-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.91 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
57
58
59
60
61
62
{
"name": "predicates",
"version": "2.0.3",
"description": "Set of various predicates for type checking, assertions, filtering etc",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/wookieb/predicates"
},
"scripts": {
"compile": "rm -rf compiled && ./node_modules/.bin/tsc -p ./.config/tsconfig.json",
"prepublish": "npm run compile",
"prepack": "cp -r ./compiled/* .",
"postpack": "rm -f *.d.ts && rm -f *.js && rm -rf integer && rm -rf utils",
"lint": "./node_modules/.bin/tslint --config ./.config/tslint.json src/*.ts",
"test": "./node_modules/.bin/jest --config ./.config/jest.json",
"test:ci": "./node_modules/.bin/jest --config ./.config/jest.json --coverage --testResultsProcessor ./node_modules/jest-junit && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"gen-docs": "ts-node docs-gen/generator.ts > API.md"
},
"engines": {
"node": ">=4.3"
},
"keywords": [
"predicates",
"predicate",
"type",
"check",
"assert",
"filter"
],
"files": [
"*.d.ts",
"*.js",
"utils/*",
"integer/*",
"finite/*"
],
"dependencies": {
"array-find": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/doctrine": "0.0.3",
"@types/jest": "^19.2.4",
"@types/node": "^8.0.28",
"@types/sinon": "^2.2.1",
"chai": "^1.10.0",
"coveralls": "^2.13.1",
"doctrine": "^2.0.0",
"handlebars": "^4.0.10",
"jest": "^20.0.0",
"jest-junit": "^1.5.1",
"sinon": "^2.2.0",
"ts-jest": "^20.0.0",
"ts-simple-ast": "^0.72.2",
"tslint": "^5.2.0",
"typescript": "^2.7.0"
},
"author": "Łukasz Kużyński",
"license": "MIT"
}