-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 747 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 747 Bytes
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
{
"name": "sandbox-browserify",
"devDependencies": {
"browserify": "~>6.3",
"jest-cli": "^0.2.0",
"react": "^0.12.0",
"react-tools": "^0.12.1",
"reactify": "^0.17.1"
},
"license": "All Code Copyright (c) Tribune Publishing",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "node ./node_modules/jest-cli/bin/jest.js"
},
"jest": {
"rootDir": "./app/assets/javascripts/components",
"scriptPreprocessor": "<rootDir>/__tests__/preprocessor.js",
"moduleFileExtensions": [
"js",
"jsx"
],
"unmockedModulePathPatterns": [
"react"
],
"testFileExtensions": [
"js",
"jsx"
],
"testPathIgnorePatterns": [
"preprocessor.js"
]
}
}