-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 823 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
{
"name": "function.this",
"version": "0.1.0",
"description": "Makes context oriented functions easily usable via `|>` pipeline operator.",
"browser": "index.js",
"main": "index.js",
"module": "index.js",
"unpkg": "index.js",
"scripts": {
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test": "istanbul cover test.js"
},
"keywords": [
"pipe",
"this",
"context",
"OOP"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"devDependencies": {
"coveralls": "^3.0.2",
"istanbul": "^0.4.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/function.this.git"
},
"bugs": {
"url": "https://github.com/WebReflection/function.this/issues"
},
"homepage": "https://github.com/WebReflection/function.this#readme"
}