-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
73 lines (73 loc) · 1.84 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@connectv/core",
"version": "0.2.8",
"description": "agent-based reactive programming library for typescript/javascript",
"keywords": [
"connective",
"react",
"reactive",
"rx",
"rxjs",
"agent",
"actor",
"actor model",
"async",
"asynchronous",
"event",
"events",
"stream",
"flow",
"event-flow",
"event flow",
"data flow",
"data-flow"
],
"homepage": "https://connective.dev",
"repository": {
"type": "git",
"url": "https://github.com/CONNECT-platform/connective.git"
},
"author": "Eugene Ghanizadeh Khoub <eugene@connect-platform.com>",
"license": "MIT",
"bugs": "https://github.com/CONNECT-platform/connective/issues",
"main": "dist/es5/index.js",
"module": "dist/es6/index.js",
"types": "dist/es6/index.d.ts",
"scripts": {
"build": "tsc -p conf/typescript/es5.json && tsc -p conf/typescript/es6.json",
"pack": "rollup -c conf/rollup/es6.js && rollup -c conf/rollup/es5.js",
"test": "ts-node --project conf/typescript/test.json test.ts",
"docs": "nodemon ./docs/serve.js --config ./docs/nodemon.json"
},
"files": [
"dist/es6",
"dist/es5",
"dist/bundles",
"logo.svg"
],
"sideEffects": false,
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@types/chai": "^4.2.11",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.35",
"chai": "^4.2.0",
"express": "^4.17.1",
"mocha": "^6.2.3",
"nodemon": "^2.0.3",
"nunjucks": "^3.2.1",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-uglify": "^6.0.4",
"ts-node": "^8.8.2",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/lodash.isequal": "^4.5.5",
"lodash.isequal": "^4.5.0",
"rxjs": "^6.5.5"
}
}