-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.59 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "hackjam.rxjs",
"version": "0.0.1",
"description": "Rebuild rxjs from scratch",
"main": "index.js",
"scripts": {
"test": "mocha",
"live": "live-server",
"build": "webpack -p",
"watch": "webpack -w",
"start": "npm-run-all --parallel watch live",
"prestart": "npm i",
"browser": "run-p test watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hackages/hackjam.rxjs.git"
},
"keywords": [
"functional reactive programming",
"javascript",
"rxjs",
"hackages",
"functional programming"
],
"author": "team@hackages.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/hackages/hackjam.rxjs/issues"
},
"homepage": "https://github.com/hackages/hackjam.rxjs#readme",
"dependencies": {
"@types/lodash": "^4.14.38",
"lodash": "^3.10.1"
},
"devDependencies": {
"@cypress/npm-run-all": "^4.0.2",
"@types/babel-core": "^6.7.14",
"@types/chai": "^3.4.34",
"@types/istanbul": "^0.4.29",
"@types/mocha": "^2.2.32",
"@types/sinon": "^1.16.31",
"@types/webpack": "^1.12.35",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"esdoc": "^0.4.8",
"eslint": "^3.9.1",
"eslint-plugin-import": "^2.0.1",
"imports-loader": "^0.6.5",
"istanbul": "^0.4.5",
"live-server": "^1.2.0",
"mocha": "^2.3.3",
"npm-run-all": "^4.0.0",
"sinon": "^1.17.1",
"wallaby-webpack": "0.0.9",
"webpack": "^1.14.0"
}
}