-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.04 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "strictly-scores",
"version": "1.0.0",
"description": "CG, Judging, Scores plus audience votes",
"scripts": {
"start": "NODE_ENV=production babel-node server.js",
"test": "gulp test --require babel-register",
"build": "gulp build --require babel-register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LA1TV/strictly-scores.git"
},
"keywords": [
"express",
"angularjs",
"nodejs"
],
"author": "Luke Moscrop",
"license": "MIT",
"bugs": {
"url": "https://github.com/LA1TV/strictly-scores/issues"
},
"homepage": "https://github.com/LA1TV/strictly-scores#readme",
"devDependencies": {
"ava": "^0.16.0",
"ava-spec": "^1.0.1",
"babel-cli": "6.3.17",
"babel-core": "6.3.26",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "6.3.13",
"babel-register": "6.3.13",
"enzyme": "^2.4.1",
"eslint": "^3.0.1",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-ava": "^3.0.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-standard": "^1.3.2",
"gulp-eslint": "^3.0.1",
"gulp-mocha": "^2.2.0",
"react-addons-test-utils": "^15.3.0",
"supertest": "^1.2.0",
"supertest-as-promised": "^4.0.0"
},
"dependencies": {
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"express": "^4.14.0",
"gulp": "^3.9.1",
"gulp-ava": "^0.13.0",
"gulp-sourcemaps": "^1.6.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run test"
},
"babel": {
"presets": [
"es2015",
"stage-2",
"react"
]
}
},
"ava": {
"files": [
"templates/**/test/*.spec.js",
"test/*.spec.js"
],
"serial": true,
"require": [
"babel-register"
],
"babel": "inherit"
}
}