-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.36 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
{
"name": "plara",
"version": "0.0.1",
"description": "functional library in javascript",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/_mocha --require ts-node/register --watch-extensions ts,tsx 'test/*.ts'",
"coverage": "./node_modules/.bin/_mocha -- --compilers js:babel/register",
"cover": "./node_modules/.bin/babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha",
"docs": "esdoc -c esdoc.json"
},
"repository": {
"type": "git",
"url": "https://github.com/davyengone/plara"
},
"keywords": [
"javascript",
"es6",
"typescript",
"functional",
"programming",
"linq.js"
],
"author": "@davyengone",
"license": "MIT",
"bugs": {
"url": "https://github.com/davyengone/plara/issues"
},
"homepage": "https://github.com/davyengone/plara",
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/mocha": "^2.2.45",
"@types/sinon": "^4.1.2",
"babel": "^5.8.23",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-runtime": "^5.8.25",
"chai": "^4.1.2",
"esdoc": "^0.4.1",
"immutable": "^3.7.5",
"istanbul": "^0.4.0",
"jest-cli": "^18.1.0",
"mocha": "^4.0.1",
"sinon": "^4.1.3",
"ts-node": "^4.1.0",
"typescript": "^2.6.2",
"ava": "^0.24.0"
},
"dependencies": {
"lodash": "^4.17.4"
}
}