-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·71 lines (71 loc) · 2.11 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
63
64
65
66
67
68
69
70
71
{
"name": "evil-diff",
"version": "0.0.2",
"description": "evil-diff",
"license": "MIT",
"repository": "",
"author": "",
"keywords": [],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"benchmark": "ts-node test/*-benchmark.ts --no-cache",
"check": "gts check",
"clean": "gts clean",
"compile": "yarn run clean; tsc -p . --project tsconfig.build.json",
"coverage": "nyc --include='src/**/*.ts' --reporter=text --reporter=html --reporter=lcov mocha --compilers ts:ts-node/register --recursive 'test/**/*-spec.ts'",
"fix": "gts fix",
"lint": "tslint --type-check --force --fix --project tsconfig.json --format verbose \"src/**/*.ts\"",
"posttest": "yarn run check",
"prepare": "yarn run compile",
"pretest": "yarn run lint && yarn run check && yarn run compile",
"test": "yarn run clean; mocha --compilers ts:ts-node/register --recursive 'test/**/*-spec.ts' 'src/**/*.ts'",
"version": "tsc --version",
"watch": "yarn run compile --watch",
"watch:test": "yarn run test --watch"
},
"dependencies": {},
"devDependencies": {
"@types/benchmark": "^1.0.30",
"@types/chai": "^3.0.0",
"@types/mocha": "^2.0.0",
"@types/node": "^8.0.33",
"@types/sinon": "^2.2.2",
"benchmark": "^2.1.4",
"chai": "^3.0.0",
"coveralls": "^2.0.0",
"gts": "latest",
"mocha": "^3.0.0",
"nyc": "^10.0.0",
"redux": "^3.7.2",
"rimraf": "^2.0.0",
"rxjs": "^5.5.2",
"sinon": "^2.2.0",
"ts-node": "^3.3.0",
"tslint": "^5.5.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.4.1"
},
"engines": {
"node": ">=4.0.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"lib"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [],
"all": true
}
}