forked from funkia/list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "@funkia/list",
"version": "0.0.2",
"description": "Fast purely functional immutable lists.",
"main": "index.js",
"scripts": {
"build": "tsc -P tsconfig-build.json",
"test": "nyc mocha --timeout 5000 --recursive test/*.ts",
"test-watch": "mocha -R progress --timeout 5000 --watch --require ts-node/register --watch-extensions ts test/*.ts",
"test-property": "mocha --timeout 0 --require ts-node/register --recursive test/property/*.ts",
"codecov": "codecov -f coverage/coverage-final.json",
"bench": "node bench",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"prepublishOnly": "npm run build; cp dist/* .",
"release-patch": "np patch",
"release-minor": "np minor",
"release-major": "np major"
},
"author": "Simon Friis Vindum",
"license": "MIT",
"peerDependencies": {
"ramda": "*"
},
"devDependencies": {
"@types/chai": "4.1.2",
"@types/mocha": "2.2.47",
"@types/ramda": "^0.25.16",
"chai": "4.1.2",
"codecov": "3.0.0",
"mocha": "5.0.0",
"np": "^2.18.3",
"nyc": "11.4.1",
"prettier": "1.10.2",
"ramda": "0.25.0",
"source-map-support": "^0.5.2",
"ts-node": "4.1.0",
"typescript": "^2.6.2"
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"json",
"html",
"text",
"lcov"
]
}
}