-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "responsive-preview",
"version": "1.0.1",
"description": "tool to preview responsive apps and websites",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"dev": "parcel src/index.html src/app.html --no-source-maps --open",
"build": "parcel build --out-dir build --no-source-maps src/index.html src/app.html"
},
"files": [
"lib",
"src",
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/minaalfy/responsive-previewer.git"
},
"keywords": [
"responsive",
"website",
"webapp",
"mobile",
"first",
"mediaquery"
],
"author": "Mina Alfy <[email protected]>",
"bugs": {
"url": "https://github.com/minaalfy/responsive-previewer/issues"
},
"homepage": "https://github.com/minaalfy/responsive-previewer#readme",
"license": "ISC",
"preferGlobal": true,
"bin": {
"responsive-preview": "./lib/index.js"
},
"dependencies": {
"Devices.css": "git+https://github.com/marvelapp/devices.css.git",
"chalk": "^2.4.2",
"create-html": "^4.1.0",
"minimist": "^1.2.0",
"ora": "^3.2.0",
"preact": "^8.4.2",
"preact-custom-scrollbars": "^4.0.4",
"preact-habitat": "^3.2.2"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.4.1",
"babel-jest": "^24.5.0",
"cssnano": "^4.1.10",
"jest": "^24.5.0",
"preact-render-spy": "^1.3.0"
}
}