-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 917 Bytes
/
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
{
"name": "fib-it",
"version": "1.1.0",
"description": "6 different implementation of the fibonacci sequence in JavaScript",
"main": "index.js",
"scripts": {
"test:lint": "eslint index.js src/",
"test:unit": "ava --verbose src/test.js",
"test": "npm run test:lint && npm run test:unit",
"release:tag": "git tag $npm_package_version && git push --tags"
},
"keywords": [
"fibonacci",
"fib",
"iterator",
"generator",
"iterable",
"stream",
"streams"
],
"author": "Luciano Mammino",
"license": "MIT",
"devDependencies": {
"ava": "^1.0.1",
"eslint": "^5.11.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
},
"dependencies": {
"eventemitter3": "^3.1.0",
"readable-stream": "^3.1.1"
}
}