forked from emmanueltouzery/prelude-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.62 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
{
"name": "prelude-ts",
"version": "0.8.2",
"description": "A typescript functional programming library",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/emmanueltouzery/prelude.ts.git"
},
"dependencies": {
"hamt_plus": "1.0.2",
"list": "2.0.17"
},
"devDependencies": {
"@types/mocha": "5.2.5",
"mocha": "5.2.0",
"typedoc": "0.7.2",
"@types/node": "10.12.2",
"benchmark": "2.1.4",
"typescript": "3.1.6",
"browserify": "14.4.0",
"uglify-js": "3.1.2",
"immutable": "4.0.0-rc.9",
"hamt": "2.2.2",
"mocha-testcheck": "1.0.0-rc.0",
"request-promise-native": "1.0.5",
"@types/request-promise-native": "1.0.15",
"request": "2.88.0"
},
"keywords": [
"typescript",
"functional-programming",
"immutable",
"collections"
],
"author": "Emmanuel Touzery",
"license": "ISC",
"bugs": {
"url": "https://github.com/emmanueltouzery/prelude.ts/issues"
},
"homepage": "https://github.com/emmanueltouzery/prelude.ts#readme",
"scripts": {
"prepublish": "rm tests/apidoc-*; scripts/prepublish.sh",
"test": "rm tests/apidoc-*; tsc && node ./dist/tests/Comments.js && tsc && ./node_modules/mocha/bin/mocha --throw-deprecation --timeout 60000 ./dist/tests/*.js",
"clean": "rm tests/apidoc-*; rm -Rf ./dist",
"docgen": "./scripts/make_doc.sh",
"benchmarks": "tsc && node ./dist/benchmarks/bench.js"
}
}