-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.58 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
{
"name": "@navigationjs/react",
"version": "0.8.0",
"description": "Small and well-tested React navigation",
"main": "dist/index.js",
"author": "Ivan Zotov <[email protected]> (http://ivanzotov.com/)",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/navigationjs/react.git"
},
"bugs": {
"url": "https://github.com/navigationjs/react/issues"
},
"homepage": "https://navigationjs.github.io/react/",
"keywords": [
"react",
"navigation"
],
"scripts": {
"test": "jest",
"build": "yarn babel src/ --out-dir dist/",
"debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"format": "prettier --write '{__tests__,src}/**/*.{js,json}' './*.{js,json}'"
},
"files": [
"src",
"dist"
],
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.7.4",
"@testing-library/react": "^9.4.0",
"babel-jest": "^24.9.0",
"eslint": "^6.6.0",
"jest": "^24.9.0",
"prettier": "^1.16.4",
"react": "^16.11.0",
"react-test-renderer": "^16.11.0",
"rollup": "^1.27.9",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.3"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"@navigationjs/core": "0.10.1",
"@railsmob/events": "0.2.1"
}
}