forked from char0n/ramda-adjunct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 5.45 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"author": {
"name": "Vladimir Gorej",
"email": "vladimir.gorej@gmail.com",
"url": "https://www.linkedin.com/in/vladimirgorej/"
},
"contributors": [
{
"name": "Sergey Homa",
"url": "https://vk.com/nulll_nulll"
},
{
"name": "Pedr Browne",
"url": "https://github.com/Undistraction"
},
{
"name": "Rocky Madden",
"url": "https://github.com/rockymadden"
}
],
"name": "ramda-adjunct",
"description": "Community-maintained extension of Ramda",
"keywords": "ramda extensions addons cookbook adjunct recipe extras",
"sideEffects": false,
"version": "2.5.0",
"homepage": "https://github.com/char0n/ramda-adjunct",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "git://github.com/char0n/ramda-adjunct.git"
},
"main": "./lib/index.js",
"module": "./es/index.js",
"jsnext:main": "./es/index.js",
"typings": "src/index.d.ts",
"engines": {
"node": ">=0.10.3"
},
"scripts": {
"docs": "better-npm-run docs",
"lint": "better-npm-run lint",
"lint:fix": "better-npm-run lint:fix",
"changelog": "better-npm-run changelog",
"test": "better-npm-run test",
"test:web": "better-npm-run test:web",
"test:ramda": "bnr test:ramda",
"test:bundle-create": "better-npm-run test:bundle-create",
"test:bundle-clean": "better-npm-run test:bundle-clean",
"coverage": "better-npm-run coverage",
"build": "better-npm-run build",
"build:es": "better-npm-run build:es",
"build:commonjs": "better-npm-run build:commonjs",
"build:umd": "better-npm-run build:umd",
"nsp:check": "better-npm-run nsp:check",
"prepublishOnly": "better-npm-run prepublishOnly",
"clean": "better-npm-run clean"
},
"betterScripts": {
"docs": "jsdoc -c jsdoc.json && node ./scripts/jsdoc-inject-dist.js",
"lint": "eslint ./ && tslint -c tslint.json src/index.d.ts",
"lint:fix": "eslint ./ --fix && tslint --fix -c tslint.json src/index.d.ts",
"changelog": "conventional-changelog -p angular -i ./CHANGELOG.md -s",
"test": "cross-env BABEL_ENV=commonjs mocha",
"test:web": "testem ci",
"test:ramda": "bnr test:ramda0.19.0 && bnr test:ramda0.19.1 && bnr test:ramda0.20.0 && bnr test:ramda0.20.1 && bnr test:ramda0.21.0 && bnr test:ramda0.22.0 && bnr test:ramda0.22.1 && bnr test:ramda0.23.0 && bnr test:ramda0.24.0 && bnr test:ramda0.24.1 && bnr test:ramda0.25.0",
"test:ramda0.19.0": "npm install ramda@0.19.0 && npm test && bnr test:web",
"test:ramda0.19.1": "npm install ramda@0.19.1 && npm test && bnr test:web",
"test:ramda0.20.0": "npm install ramda@0.20.0 && npm test && bnr test:web",
"test:ramda0.20.1": "npm install ramda@0.20.1 && npm test && bnr test:web",
"test:ramda0.21.0": "npm install ramda@0.21.0 && npm test && bnr test:web",
"test:ramda0.22.0": "npm install ramda@0.22.0 && npm test && bnr test:web",
"test:ramda0.22.1": "npm install ramda@0.22.1 && npm test && bnr test:web",
"test:ramda0.23.0": "npm install ramda@0.23.0 && npm test && bnr test:web",
"test:ramda0.24.0": "npm install ramda@0.24.0 && npm test && bnr test:web",
"test:ramda0.24.1": "npm install ramda@0.24.1 && npm test && bnr test:web",
"test:ramda0.25.0": "npm install ramda@0.25.0 && npm test && bnr test:web",
"test:bundle-create": "webpack --config webpack.config-test.web.js",
"test:bundle-clean": "rimraf tmp-test-bundle.js",
"coverage": "cross-env BABEL_ENV=coverage nyc mocha",
"build": "npm run build:es && npm run build:commonjs && npm run build:umd",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:umd": "webpack --config webpack.config.js",
"nsp:check": "nsp check",
"prepublishOnly": "npm run clean && npm run lint && npm run test && npm run test:web && npm run build && npm run docs",
"clean": "rimraf .nyc_output .tmp docs coverage tmp-test-bundle.js dist lib es"
},
"readme": "README.md",
"peerDependencies": {
"ramda": ">= 0.19.0 <= 0.25.0"
},
"devDependencies": {
"babel-cli": "=6.26.0",
"babel-core": "=6.26.0",
"babel-loader": "=7.1.2",
"babel-plugin-annotate-pure-calls": "=0.2.2",
"babel-plugin-istanbul": "=4.1.5",
"babel-preset-es2015": "=6.24.1",
"babel-preset-es2016": "=6.24.1",
"babel-preset-stage-3": "=6.24.1",
"babel-register": "=6.26.0",
"better-npm-run": "=0.1.0",
"chai": "=4.1.2",
"chai-as-promised": "=7.1.1",
"codecov": "3.0.0",
"conventional-changelog-cli": "1.3.9",
"cross-env": "=5.1.3",
"docdash": "git+https://github.com/char0n/docdash.git#bf4b4eebfdaf042c0ea9038419bc26813f243c94",
"es6-promise": "4.2.4",
"eslint": "4.17.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-mocha": "=4.11.0",
"eslint-plugin-ramda": "=2.4.0",
"fantasy-land": "3.5.0",
"glob": "=7.1.2",
"istanbul": "=0.4.5",
"jsdoc": "=3.5.5",
"jsverify": "=0.8.3",
"license-cli": "1.1.6",
"mocha": "5.0.0",
"mocha-junit-reporter": "1.17.0",
"mocha-multi-reporters": "1.1.7",
"monet": "=0.9.0-alpha.4",
"nsp": "3.1.0",
"nyc": "11.4.1",
"phantomjs": "=2.1.7",
"ramda": "=0.25.0",
"rimraf": "=2.6.2",
"sinon": "4.3.0",
"testem": "2.0.0",
"tslint": "=5.9.1",
"typescript": "2.6.2",
"typescript-definition-tester": "=0.0.5",
"webpack": "3.11.0"
},
"tonicExampleFilename": "tonicExample.js"
}