-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "bitcoin-visualizer",
"version": "0.1.0",
"description": "A real-time visualizer for the bitcoin blockchain",
"repository": "https://github.com/SimplGy/bitcoin-visualizer.git",
"keywords": [
"bitcoin",
"blockchain",
"datavis"
],
"author": "@simplgy",
"license": "MIT",
"scripts": {
"test": "npm run test-watch",
"test-once": "gulp -- prepare-tests && jasmine-node dist/test.js --matchall",
"test-watch": "gulp -- prepare-tests-watch & gulp -- prepare-tests && jasmine-node dist/test.js --matchall --autotest --verbose"
},
"devDependencies": {
"browser-sync": "^2.6.4",
"browserify": "^9.0.8",
"chalk": "^1.0.0",
"del": "^1.1.1",
"glob": "^5.0.5",
"globby": "^2.0.0",
"gulp": "^3.8.11",
"gulp-concat": "^2.5.2",
"gulp-cssmin": "^0.1.6",
"gulp-plumber": "^1.0.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.4",
"jasmine-node": "^1.14.5",
"lodash": "^3.7.0",
"reactify": "^1.1.0",
"require-dir": "^0.3.0",
"through2": "^0.6.5",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.1.1"
},
"dependencies": {
"baconjs": "^0.7.53",
"moment": "^2.10.2"
}
}