This repository was archived by the owner on Oct 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.39 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.39 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
{
"name": "ccm",
"version": "0.1.0",
"description": "Cubing Competition Manager",
"main": "index.js",
"directories": {
"test": "tests"
},
"dependencies": {
"jquery": "^2.2.3",
"jstz": "^1.0.7",
"mdns-js": "^0.5.0",
"mkdirp": "^0.5.1",
"react": "^15.0.1",
"react-addons-create-fragment": "^15.0.1",
"react-addons-css-transition-group": "^15.0.1",
"react-addons-linked-state-mixin": "^15.0.1",
"react-addons-perf": "^15.0.1",
"react-addons-pure-render-mixin": "^15.0.1",
"react-addons-test-utils": "^15.0.1",
"react-addons-transition-group": "^15.0.1",
"react-addons-update": "^15.0.1",
"react-dom": "^15.0.1",
"typeahead.js": "^0.11.1"
},
"devDependencies": {
"eslint": "^2.13.1",
"eslint-plugin-meteor": "^3.6.0",
"precommit-hook": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cubing/ccm.git"
},
"license": "GPL-3.0",
"private": true,
"bugs": {
"url": "https://github.com/cubing/ccm/issues"
},
"homepage": "https://live.cubing.net",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js .",
"start": "VELOCITY=0 meteor",
"test": "meteor test --once --driver-package dispatch:mocha-phantomjs",
"validate": "npm ls"
},
"config": {
"pre-commit": {
"lint": true,
"validate": false
}
},
"pre-commit": [
"lint",
"validate"
]
}