-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "preludejs",
"version": "0.4.2",
"description": "A modular implementation of Haskell's Prelude library in ES6",
"main": "index.js",
"type": "module",
"scripts": {
"start": "mocha test --compilers js:babel/register --watch",
"test": "mocha test --compilers js:babel/register",
"cover": "istanbul cover _mocha -- --compilers js:babel/register -R spec && cat ./coverage/coverage.json | codecov",
"dist": "scripts/dist",
"release": "scripts/release",
"docs": "scripts/build-docs",
"lint": "standard src/* test/* --global describe --global it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alanrsoares/prelude-js.git"
},
"keywords": [
"prelude",
"functional",
"js",
"es6",
"haskell",
"lodash",
"underscore"
],
"author": "github.com/alanrsoares",
"license": "MIT",
"bugs": {
"url": "https://github.com/alanrsoares/prelude-js/issues"
},
"homepage": "https://github.com/alanrsoares/prelude-js#readme",
"devDependencies": {
"babel": "^5.8.38",
"babel-core": "^5.8.38",
"babel-eslint": "^5.0.4",
"chai": "^4.3.6",
"codecov.io": "^0.1.6",
"deep-freeze": "0.0.1",
"istanbul": "^0.4.5",
"minimist": "^1.2.7",
"mocha": "^2.5.3",
"releasy": "^1.13.1",
"standard": "^17.0.0"
}
}