-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "ramda-extras",
"version": "0.5.01",
"description": "Some few functions I feel was missing in ramda",
"main": "src/ramda-extras.coffee",
"type": "module",
"scripts": {
"test": "npm-run-all clean-temp --parallel webpack-test jest trap",
"webpack-test": "webpack --watch",
"jest": "jest --watchAll --verbose=false",
"clean-temp": "rimraf ./temp",
"trap": "../hack/temp_trap",
"dist": "TODO: if we want to publish to npm again, need to come up with way using webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/Cottin/ramda-extras.git"
},
"author": "Victor Cottin <[email protected]> (http://www.wecodebetter.se/)",
"license": "MIT",
"dependencies": {
"ramda": "^0.28.0"
},
"devDependencies": {
"@babel/preset-env": "^7.15.4",
"@babel/register": "^7.15.3",
"@babel/runtime": "^7.15.3",
"coffee-loader": "^4.0.0",
"coffeescript": "^2.5.1",
"jest": "^29.2.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"jest": {
"setupFilesAfterEnv": [
"./setupTests.js"
]
}
}