-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.48 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
{
"name": "js-criteria",
"version": "2.1.2",
"description": "lib/index.js",
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"testd": "electron-mocha --renderer --interactive --opts ./tools/test/mocha.opts",
"test": "electron-mocha --renderer --opts ./tools/test/mocha.opts",
"build": "rimraf ./lib && tsc -p ./tsconfig.build.json",
"docs": "rimraf ./docs && typedoc --name js-criteria --readme ./README.md --exclude **/__test__/**/* --out ./docs/ ./src/ && node node_modules/shx/lib/cli.js touch ./docs/.nojekyll"
},
"author": "kamilbukum@gmail.com",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.0.5",
"@types/mocha": "^2.2.44",
"@types/sinon": "^4.0.0",
"chai": "^4.1.2",
"colors": "^1.1.2",
"electron": "^1.7.9",
"electron-mocha": "^5.0.0",
"mocha": "^4.0.1",
"rimraf": "^2.6.2",
"shx": "^0.2.2",
"sinon": "^4.1.2",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.9.2",
"typedoc": "^0.9.0",
"typescript": "^2.6.1"
},
"dependencies": {
"wasabi-common": "^2.2.3"
},
"repository": {
"type": "git",
"url": "https://github.com/wasabi-io/js-criteria.git"
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"sourceMap": true,
"instrument": true
}
}