-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "react-in-angular",
"version": "3.1.1",
"description": "Use your React component in Angular",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist/",
"build": "BABEL_ENV=production babel src --ignore \"**/__tests__/**\" --out-dir dist",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --coverage --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/truffls/react-in-angular.git"
},
"keywords": [
"angular",
"react",
"component"
],
"author": "Florian Goße <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/truffls/react-in-angular/issues"
},
"homepage": "https://github.com/truffls/react-in-angular#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-destructuring": "^7.5.0",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/plugin-transform-template-literals": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"angular": "^1.6.4",
"angular-mocks": "^1.6.4",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^2.6.1"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0",
"react-dom": "^16.0.0 || ^17.0.0"
},
"jest": {
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
}
}