This repository has been archived by the owner on Apr 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.44 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-wizr",
"version": "2.5.1",
"files": [
"lib"
],
"main": "lib",
"scripts": {
"build": "babel src -d lib --copy-files",
"check:format": "npm run prettier -- --list-different",
"clean": "rimraf lib",
"format": "npm run prettier -- --write",
"lint": "eslint --ext .js ./src",
"prebuild": "npm run clean && npm run lint",
"prepublish": "npm run build",
"prettier": "prettier \"**/*.js\"",
"test": "jest --watchAll",
"test:once": "jest"
},
"keywords": [
"react",
"wizard",
"step",
"multistep"
],
"author": "Vicent Gozalbes <[email protected]>",
"license": "MIT",
"description": "React library for building declarative wizards",
"repository": {
"type": "git",
"url": "https://github.com/vigosan/react-wizr"
},
"babel": {
"presets": [
"env",
"stage-2",
"react"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"browser": true,
"es6": true,
"jest": true,
"node": true
},
"plugins": [
"standard",
"react",
"prettier"
],
"extends": [
"standard",
"standard-react",
"prettier",
"prettier/react"
],
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"semi": true
}
]
}
},
"jest": {
"setupFiles": [
"<rootDir>/__tests__/shim.js",
"<rootDir>/__tests__/config.js"
],
"testMatch": [
"<rootDir>/src/**/?(*.)(spec|test).js"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-jest": "^21.2.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.13.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"jest": "^21.2.1",
"prettier": "^1.7.4",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"history": "^4.7.2",
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}