forked from selfrefactor/rambda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.02 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "rambda",
"version": "4.4.0",
"description": "Lightweight faster alternative to Ramda",
"main": "./dist/rambda.js",
"module": "./dist/rambda.esm.js",
"umd": "./dist/rambda.umd.js",
"typings": "./index.d.ts",
"sideEffects": false,
"scripts": {
"tslint:tslint": "tslint --fix index.d.ts",
"tslint:tsformat": "tsfmt -r index.d.ts",
"tslint": "yarn tslint:tslint&&yarn tslint:tsformat",
"typings": "dtslint --localTs ./node_modules/typescript/lib --expectOnly ./_typings_tests",
"fix": "mkdir $HOME/.dts/perf -p",
"test": "jest src",
"prove": "jest src --json",
"readme": "node files/createReadme/createReadme.js",
"docs": "docsify init ./docs",
"build": "yarn build:main&&yarn build:web",
"build:main": "NODE_ENV=build rollup -c files/rollup.config.js",
"build:web": "NODE_ENV=build rollup -c files/rollup.web.config.js",
"benchmarks": "node benchmarks/indexProve.js",
"benchmark": "node benchmarks/indexProve.js",
"bench": "node benchmarks/indexProve.js",
"cover:spec": "jest src --coverage --no-cache -w 1",
"cover": "yarn typings&&yarn cover:spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/selfrefactor/rambda.git"
},
"keywords": [
"ramda",
"fp",
"functional",
"utility",
"lodash"
],
"author": "self_refactor",
"license": "MIT",
"bugs": {
"url": "https://github.com/selfrefactor/rambda/issues"
},
"homepage": "https://github.com/selfrefactor/rambda#readme",
"devDependencies": {
"@babel/core": "7.7.4",
"@babel/plugin-proposal-object-rest-spread": "7.7.4",
"@babel/preset-env": "7.7.4",
"@types/jest": "24.0.23",
"@types/ramda": "0.26.36",
"babel-jest": "24.9.0",
"docsify-cli": "4.4.0",
"dtslint": "2.0.2",
"helpers": "https://github.com/selfrefactor/helpers#2.2.1",
"jest": "24.9.0",
"lodash": "4.17.15",
"markdown-toc": "1.2.0",
"rambdax": "3.3.1",
"ramda": "0.26.1",
"rollup": "1.27.8",
"string-fn": "2.10.2",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-cleanup": "3.1.1",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-json": "3.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.1.0",
"rollup-plugin-sourcemaps": "0.4.2",
"tslint": "5.20.1",
"typescript-formatter": "7.2.2",
"typescript": "3.7.2"
},
"dependencies": {},
"files": [
"dist",
"src",
"_ts-toolbelt",
"index.d.ts",
"tools.d.ts"
],
"jest": {
"collectCoverageFrom": [
"src/*.js",
"!internal"
]
},
"commitMessage": {
"support": [
"docs",
"build",
"prepublish",
"refactor",
"lint",
"test",
"typings",
"script",
"benchmark"
],
"feature": [
"method"
],
"workInProgress": "write more writing tests",
"docs": [
"docsify",
"repl",
"changelog",
"important",
"important"
],
"test": [
"typings",
"fix"
],
"fix": [
"small"
]
}
}