-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.64 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.64 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
{
"name": "pulse",
"version": "0.0.1",
"description": "A time-traveling metronome",
"main": "main.js",
"scripts": {
"clean": "rm -r ./js/dist || true",
"build": "npm run clean && babel ./js/src --out-dir ./js/dist",
"start": "electron .",
"test": "npm run build && mocha ./js/dist/spec/**/*.spec.js",
"test-reducers": "mocha ./js/dist/spec/reducers/**/*.spec.js",
"test-components": "mocha ./js/dist/spec/components/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/partials-dev/pulse.git"
},
"keywords": [],
"author": "C. Thomas Bailey",
"license": "",
"bugs": {
"url": ""
},
"homepage": "",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"browser-sync": "^2.18.2",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.1",
"deep-freeze": "0.0.1",
"electron-prebuilt-compile": "^1.4.10",
"electron-rebuild": "^1.4.0",
"enzyme": "^2.4.1",
"jsdom": "^9.4.5",
"mocha": "^3.0.2",
"react-addons-test-utils": "^15.3.1",
"require-dir": "^0.3.0",
"sinon": "^1.17.5",
"spectron": "^3.3.0"
},
"dependencies": {
"bootstrap": "^3.3.7",
"electron-context-menu": "^0.8.0",
"electron-is-dev": "^0.1.2",
"json-stringify-safe": "^5.0.1",
"keycode": "^2.1.7",
"mkdirp": "^0.5.1",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-gif": "^0.1.0",
"react-mdl": "^1.9.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"vkey": "^1.0.0",
"web-audio-scheduler": "^1.1.0",
"worker-timer": "^1.1.0",
"x-gif": "^1.0.5"
}
}