-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.24 KB
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
44
45
46
47
48
{
"name": "interruptible",
"version": "0.0.1",
"description": "Make functions interruptible",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"browser": "dist/index.umd.js",
"repository": "git@github.com:jstejada/interruptible.git",
"author": "Juan Tejada <juans.tejada@gmail.com>",
"license": "MIT",
"keywords": [
"interruptible",
"generators",
"functions",
"coroutines",
"interruptible functions",
"interruptible coroutines",
"interruptible generators",
"interruptible javascript functions",
"interrupt execution",
"pause",
"pause functions",
"pause javascript",
"pause execution"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.2",
"flow-bin": "^0.47.0",
"jest": "^20.0.4",
"rollup": "^0.42.0",
"rollup-plugin-babel": "^2.7.1"
},
"scripts": {
"build": "rollup -c",
"test": "jest",
"flow": "flow",
"prepublish": "yarn build"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0"
}
}