-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
58 lines (58 loc) · 1.83 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
{
"name": "prelude-ts",
"version": "1.0.6",
"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.19"
},
"devDependencies": {
"@types/mocha": "5.2.7",
"mocha": "6.2.0",
"typedoc": "0.7.2",
"@types/node": "12.7.3",
"benchmark": "2.1.4",
"typescript": "3.1.6",
"browserify": "16.5.0",
"uglify-js": "3.6.0",
"immutable": "4.0.0-rc.12",
"hamt": "2.2.2",
"mocha-testcheck": "1.0.0-rc.0",
"request-promise-native": "1.0.7",
"@types/request-promise-native": "1.0.16",
"request": "2.88.0",
"handlebars": "4.5.3"
},
"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": {
"prepare": "npm run clean; scripts/prepublish.sh",
"test": "rm -f tests/apidoc-*; tsc -p tsconfig.test.json && node ./dist/tests/Comments.js && tsc -p tsconfig.test.json && ./node_modules/mocha/bin/mocha --throw-deprecation --timeout 90000 ./dist/tests/*.js",
"clean": "rm -f tests/apidoc-*; rm -Rf ./dist",
"docgen": "./scripts/make_doc.sh",
"benchmarks": "tsc -p tsconfig.benchmarks.json && node ./dist/benchmarks/bench.js"
},
"files": [
"dist",
"src",
"LICENSE.TXT",
"README.md",
"package.json"
]
}