-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 879 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
{
"name": "runtime",
"version": "0.14.1",
"homepage": "http://github.com/stringparser/runtime",
"description": "a runtime interface",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint lib/*.js *.js",
"test": "npm run lint && mocha test/index.js"
},
"repository": "stringparser/runtime",
"keywords": [
"reuse",
"async",
"simple",
"streams",
"promises",
"callbacks",
"composition"
],
"author": "Javier Carrillo Milla <[email protected]>",
"license": "MIT",
"dependencies": {
"async-done": "^1.2.x",
"createClass": "^1.0.x",
"lodash.clone": "^3.0.3",
"lodash.merge": "^3.3.2",
"once": "^1.3.3"
},
"devDependencies": {
"archy": "^1.0.0",
"es6-promise": "^3.0.2",
"eslint": "^3.3.x",
"mocha": "^2.2.5",
"should": "^7.0.2",
"through2": "^2.0.0"
}
}