-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
85 lines (85 loc) · 2.19 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
85
{
"name": "hull-js",
"version": "0.10.0",
"main": "lib/hull.js",
"dependencies": {
"babel-runtime": "^6.6.1",
"bluebird": "^3.3.5",
"browser-jsonp": "^1.1.4",
"cookies-js": "^1.2.2",
"currentscript": "^1.1.0",
"eventemitter2": "^1.0.3",
"flux": "^2.1.1",
"git-rev-sync": "^1.5.1",
"html-loader": "^0.4.3",
"inline-style-loader": "0.0.5",
"lodash": "^4.11.1",
"merge-stream": "^1.0.0",
"putainde-localstorage": "^4.0.0",
"qs": "^6.1.0",
"raw-loader": "^0.5.1",
"superagent": "^1.8.3"
},
"devDependencies": {
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.3",
"babel-jest": "^12.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-lodash": "^3.1.4",
"babel-plugin-transform-es3-member-expression-literals": "^6.5.0",
"babel-plugin-transform-es3-property-literals": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.10.0",
"concurrent-transform": "^1.0.0",
"del": "^2.2.0",
"eslint": "^2.8.0",
"gulp": "^3.9.1",
"gulp-awspublish": "^3.0.2",
"gulp-gh-pages": "^0.5.4",
"gulp-invalidate-cloudfront": "hull/gulp-invalidate-cloudfront",
"gulp-notify": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-util": "^3.0.7",
"harmonize": "^1.4.4",
"jest-cli": "^12.0.2",
"moment": "^2.13.0",
"ngrok": "^2.1.7",
"node-notifier": "^4.5.0",
"object-assign": "^4.0.1",
"run-sequence": "^1.1.5",
"stats-webpack-plugin": "0.3.1",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"jest": {
"testDirectoryName": "__tests__",
"scriptPreprocessor": "<rootDir>/test_utils/preprocessor.js",
"testFileExtensions": [
"coffee",
"js"
],
"testPathIgnorePatterns": [
"node_modules"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/object-assign",
"<rootDir>/node_modules/lodash",
"<rootDir>/src/utils/lodash"
],
"moduleFileExtensions": [
"js",
"json",
"coffee"
]
},
"scripts": {
"test": "jest",
"build": "gulp build",
"start": "gulp"
},
"engines": {
"node": "8.x"
}
}