-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.59 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
{
"name": "yambda",
"version": "0.1.0",
"description": "Javascript has never been so much fun(ctional)",
"main": "index.js",
"scripts": {
"test": "ava --verbose",
"cover": "nyc npm run test",
"postcover": "nyc report --reporter=lcov",
"lint": "eslint src/**/*.js specs/**/*.js",
"prebuild": "rimraf build && cpy '*.md' 'package.json' build",
"build": "node scripts/build-index.js && babel --out-dir build src"
},
"devDependencies": {
"ava": "0.15.2",
"babel-cli": "6.11.4",
"babel-core": "6.11.4",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.9.0",
"babel-register": "6.11.6",
"cpy-cli": "1.0.1",
"eslint": "2.13.1",
"eslint-config-airbnb": "9.0.1",
"eslint-import-resolver-webpack": "0.4.0",
"eslint-plugin-import": "1.10.3",
"eslint-plugin-jsx-a11y": "1.5.5",
"eslint-plugin-react": "5.2.2",
"glob": "7.0.5",
"nyc": "7.1.0",
"rimraf": "2.5.4",
"webpack": "1.13.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/renaudtertrais/yambda.git"
},
"keywords": [
"functional",
"javascript",
"lambda"
],
"author": "Renaud Tertrais <[email protected]> (http://renaudtertrais.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/renaudtertrais/yambda/issues"
},
"homepage": "https://github.com/renaudtertrais/yambda#readme",
"ava": {
"require": [
"babel-register"
],
"babel": "inherit",
"files": [
"specs/*.js"
]
},
"nyc": {
"include": [
"src/*.js"
],
"exclude": [
"spec/*"
]
}
}