forked from funkia/hareactive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "hareactive",
"version": "0.0.7",
"description": "Experimental FRP library for building web applications.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc -P ./tsconfig-release.json",
"prebench": "tsc -P ./tsconfig-release.json",
"bench": "node benchmark",
"test": "nyc mocha --compilers ts:ts-node/register test/**/*.ts && nyc report",
"test-watch": "mocha --watch --compilers ts:ts-node/register test/**/*.ts",
"test-browser": "karma start karma.conf.js",
"codecov": "codecov -f coverage/coverage-final.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paldepind/hareactive.git"
},
"keywords": [
"frp"
],
"author": "Simon Friis Vindum",
"license": "MIT",
"bugs": {
"url": "https://github.com/paldepind/hareactive/issues"
},
"homepage": "https://github.com/paldepind/hareactive#readme",
"dependencies": {
"jabz": "0.0.7"
},
"devDependencies": {
"@types/benchmark": "^1.0.30",
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.32",
"@types/sinon": "^1.16.31",
"benchmark": "^2.1.0",
"browserify": "^13.1.0",
"browserify-istanbul": "^2.0.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"karma": "^1.3.0",
"karma-browserify": "^5.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.2.0",
"karma-source-map-support": "^1.2.0",
"mocha": "^2.5.3",
"most": "^0.19.7",
"nyc": "^8.3.0",
"sinon": "^1.17.4",
"ts-node": "^1.3.0",
"tsify": "^1.0.7",
"typescript": "^2.1.0-dev.20160925",
"watchify": "^3.7.0",
"webpack": "^1.13.1"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"json",
"html"
]
}
}