-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 1.77 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
{
"name": "react-dom-components",
"version": "3.0.0",
"description": "Build data models for React Components using server-side DOM.",
"main": "lib/index.js",
"scripts": {
"build": "babel -d lib/ src/",
"prepublishOnly": "npm run build",
"test": "jest 2>&1",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage"
},
"jest": {
"moduleDirectories": [
"node_modules"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"testEnvironment": "jest-environment-jsdom-global",
"testPathIgnorePatterns": [
"node_modules"
],
"transform": {
"\\.html$": "jest-raw-loader",
"^.+\\.jsx?$": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+github.com:auniverseaway/react-dom-components.git"
},
"keywords": [
"react",
"component",
"dom",
"props"
],
"author": "Chris Millar <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/auniverseaway/react-dom-components/issues"
},
"homepage": "https://github.com/auniverseaway/react-dom-components#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"babel-jest": "^24.5.0",
"jest": "^24.5.0",
"jest-environment-jsdom": "^24.5.0",
"jest-environment-jsdom-global": "^1.2.0",
"jest-raw-loader": "^1.0.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-test-renderer": "^16.8.4"
}
}