-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 998 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
{
"name": "syncify",
"version": "1.2.1",
"description": "A radically simpler way to deal with asynchronous functions in javascript",
"author": "Aldo Bucchi <[email protected]>",
"main": "lib/index.js",
"scripts": {
"test": "make test",
"build": "node_modules/coffee-script/bin/coffee -o lib -c src/*.coffee",
"watch": "node_modules/coffee-script/bin/coffee -w -o lib -c src/*.coffee",
"prepublish": "npm run build"
},
"devDependencies": {
"mocha": "~1.9.0",
"chai": "~1.5.0",
"coffee-script": "~1.6.3",
"browserify": "~2.34.0",
"uglify-js": "~2.4.0"
},
"repository": {
"type": "https://github.com/aldonline/syncify.git"
},
"dependencies": {
"reactivity": "~2.3.2",
"refmap": "0.0.3",
"stackval": "0.2.1"
},
"bugs": {
"url": "https://github.com/aldonline/syncify/issues"
},
"keywords": [
"async",
"callback",
"thread",
"fiber",
"fibers",
"syncify",
"future",
"promise"
]
}