forked from selfrefactor/rambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.27 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "rambda",
"version": "2.1.1",
"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": {
"test:watch": "jest --watch",
"test": "jest src",
"readme": "node files/createReadme",
"readmex": "node files/createReadmex",
"docs": "docsify init ./docs",
"de": "commit",
"build": "yarn build:main&&yarn build:web&&yarn minify",
"build:main": "NODE_ENV=build rollup -c files/rollup.config.js",
"build:web": "NODE_ENV=build rollup -c files/rollup.web.config.js",
"minify": "node files/minify",
"benchmark": "node benchmarks/index.js --all",
"cover": "jest src --coverage --no-cache -w 1",
"jest": "jest",
"prepublish": "BABEL_ENV=development babel src/ --out-dir lib/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/selfrefactor/rambda.git"
},
"keywords": [
"ramda",
"fp",
"functional",
"utility"
],
"author": "self_refactor",
"license": "MIT",
"bugs": {
"url": "https://github.com/selfrefactor/rambda/issues"
},
"homepage": "https://github.com/selfrefactor/rambda#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-annotate-pure-calls": "^0.2.2",
"babel-plugin-external-helpers": "^7.0.0-beta.3",
"babel-preset-env": "^1.6.1",
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.4",
"commit-message": "https://github.com/selfrefactor/commit-message#3.0.0",
"jest": "^23.0.0-alpha.4",
"lodash": "^4.17.5",
"markdown-toc": "^1.2.0",
"minify": "https://github.com/selfrefactor/minify#0.1.0",
"rambda-repl": "https://github.com/selfrefactor/rambda-repl#0.3.0",
"rambdax": "^0.22.0",
"ramda": "^0.25.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-node-resolve": "^3.0.2"
},
"dependencies": {},
"commitMessage": {
"support": [
"docs",
"build",
"prepublish",
"refactor",
"lint"
],
"feature": [
"method"
],
"workInProgress": "",
"docs": [
"docsify",
"repl",
"changelog"
]
},
"files": [
"dist",
"lib",
"index.d.ts"
]
}