-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 KB
/
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": "actor-system",
"description": "A proof of concept implementation of actor system in JavaScript",
"version": "2.0.0-alpha.2",
"main": "actor-system.js",
"jsnext:main": "index.js",
"types": "typings/actor-system.d.ts",
"license": "MIT",
"author": "Alexey Raspopov",
"repository": "alexeyraspopov/actor-system",
"homepage": "https://actor-system.js.org/",
"keywords": [
"async",
"actor",
"message",
"coroutine",
"dispatcher"
],
"devDependencies": {
"babel-core": "~6.24.0",
"babel-jest": "~20.0.3",
"babel-plugin-external-helpers": "~6.22.0",
"babel-preset-es2015": "~6.24.0",
"babel-preset-es2017": "~6.24.1",
"babel-preset-stage-2": "~6.22.0",
"jest": "~20.0.4",
"rollup": "~0.41.6",
"rollup-plugin-babel": "~2.7.1"
},
"babel": {
"presets": [
"es2015",
"es2017",
"stage-2"
]
},
"scripts": {
"prepublish": "NODE_ENV=production rollup --format cjs --config rollup.config.js index.js > actor-system.js",
"test": "jest --coverage"
}
}