-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 875 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 875 Bytes
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
{
"name": "async-native",
"version": "0.1.0",
"description": "A non-intrusive minimalistic helper for working with asynchronous Javascript",
"main": "./src/async-native.js",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "TO COMPLETE"
},
"keywords": [
"$",
"async",
"asynchronous",
"chain"
],
"author": "Paul Dilley <pldilley@gmail.com>",
"licenses": [
{
"type": "GPL",
"url": "http://www.gnu.org/licenses/gpl.txt"
},
{
"type": "LGPL",
"url": "http://www.gnu.org/licenses/lgpl.txt"
}
],
"bugs": {
"url": "https://github.com/brentertz/scapegoat/issues"
},
"dependencies": {
"paralleljs": "^0.2.1",
"performance-now": "^0.2.0"
},
"devDependencies": {
"mocha": "~1.16.2",
"chai": "~1.8.1"
}
}