-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 905 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
37
38
39
40
41
42
43
{
"name": "interprit",
"version": "2.0.0",
"description": "Pluggable interpreter and effects engine",
"main": "index.js",
"directories": {
"example": "examples",
"lib": "lib"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eiriklv/interprit.git"
},
"keywords": [
"effects",
"interpreter",
"side",
"effects",
"descriptions",
"values"
],
"author": "Eirik Vullum",
"license": "MIT",
"bugs": {
"url": "https://github.com/eiriklv/interprit/issues"
},
"homepage": "https://github.com/eiriklv/interprit#readme",
"dependencies": {
"debug": "^4.1.1",
"is-function": "^1.0.1",
"is-generator-function": "^1.0.7",
"is-object": "^1.0.1",
"is-promise": "^2.1.0",
"minimatch": "^3.0.4",
"uuid": "^3.2.1"
},
"devDependencies": {
"jest": "^22.4.2"
}
}