-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "react-device-simulator",
"version": "1.0.1",
"description": "Device simulator for React components",
"main": "index.js",
"files": [
"dist"
],
"scripts": {
"build": "sagui build",
"dist": "sagui dist",
"start": "sagui develop --port 3000",
"test": "sagui test",
"test:lint": "sagui test:lint",
"test:typecheck": "sagui test:typecheck",
"test:unit": "sagui test:unit --coverage",
"test:unit:watch": "sagui test:unit --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Deschtex/react-device-simulator.git"
},
"keywords": [
"react",
"device simulator",
"device simulation",
"simulator",
"simulation",
"testing"
],
"author": "Pierre Wahlgren <[email protected]>",
"license": "ISC",
"dependencies": {
"classnames": "^2.2.5",
"react-frame-component": "^3.0.0"
},
"peerDependencies": {
"prop-types": "15.6.1",
"react": "^16.4.0",
"react-dom": "^16.4.0"
},
"devDependencies": {
"prop-types": "15.6.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"sagui": "^8.0.0"
}
}