forked from funkia/list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.34 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
{
"name": "@funkia/list",
"version": "0.0.1",
"description": "Fast purely functional immutable lists.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc -P tsconfig-build.json",
"test": "mocha --recursive --compilers ts:ts-node/register test/**/*.ts",
"test-jest": "jest",
"test-watch": "mocha -R progress --watch --compilers ts:ts-node/register test/**/*.ts",
"codecov": "codecov -f coverage/coverage-final.json",
"bench": "node bench"
},
"author": "Simon Friis Vindum",
"license": "MIT",
"devDependencies": {
"@types/chai": "4.0.1",
"@types/jest": "^20.0.5",
"@types/mocha": "2.2.41",
"chai": "^4.1.0",
"codecov": "2.2.0",
"jest": "^20.0.4",
"mocha": "3.4.2",
"nyc": "11.0.3",
"source-map-support": "^0.4.15",
"ts-jest": "^20.0.7",
"ts-node": "3.2.1",
"typescript": "^2.4.2"
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"json",
"html",
"text"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"<rootDir>/test/**/*.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}