forked from bmun/huxley
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.12 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.12 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
{
"name": "huxley",
"version": "0.0.0",
"description": "A conference management system for Berkeley Model United Nations.",
"main": "huxley/www/static/js/huxley.browserify.js",
"license": "BSD",
"dependencies": {
"browserify": "6.3.2",
"es6-promise": "2.0.0",
"flux": "^2.1.1",
"jquery": "2.1.1",
"jquery-ui": "1.10.5",
"js-cookie": "~2.0.3",
"react": "~0.13.3",
"react-router": "~0.13.0"
},
"scripts": {
"test": "jest"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"setupTestFrameworkScriptFile": "<rootDir>/scripts/jestPreprocessor.js",
"unmockedModulePathPatterns": [
"node_modules/babel-core",
"node_modules/core-js",
"<rootDir>/node_modules/flux",
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/es6-promise"
],
"testPathIgnorePatterns": [
"/node_modules/",
"huxley/static"
]
},
"private": true,
"devDependencies": {
"babel-jest": "~5.3.0",
"babelify": "~6.3.0",
"detachkify": "0.0.6",
"envify": "~3.4.0",
"jest-cli": "~0.4.0",
"uglify-js": "~2.4.15"
}
}