-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 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
{
"name": "tvs-flow",
"version": "0.9.0",
"description": "trivialspace flow: a data flow system for javascript",
"main": "dist/tvs-flow.js",
"typings": "dist/lib/index.d.ts",
"types": "dist/lib/index.d.ts",
"scripts": {
"test": "karma start",
"build": "tsc; webpack",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trivial-space/flow.git"
},
"keywords": [
"data flow",
"reactive programming",
"live coding"
],
"author": "Thomas Gorny",
"license": "MIT",
"bugs": {
"url": "https://github.com/trivial-space/flow/issues"
},
"homepage": "https://github.com/trivial-space/flow#readme",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.0",
"@types/sinon": "^4.0.0",
"@types/sinon-chai": "^2.7.29",
"chai": "^4.1.1",
"karma": "^2.0.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.6",
"mocha": "^5.2.0",
"sinon": "^4.2.2",
"sinon-chai": "^2.14.0",
"ts-loader": "^3.4.0",
"tslint": "^5.9.1",
"tvs-libs": "0.5.0",
"typescript": "^2.7.1",
"uglifyjs-webpack-plugin": "^1.1.8",
"webpack": "^3.10.0"
}
}