-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.39 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
{
"name": "grid-wiz",
"version": "1.0.1",
"description": "Make a CSS Grid framework with custom browser support at the snap of a function.",
"main": "dist/grid-wiz.cjs.js",
"module": "dist/grid-wiz.esm.js",
"browser": "dist/grid-wiz.umd.js",
"homepage": "https://grid-wiz.now.sh",
"repository": {
"type": "git",
"url": "https://github.com/seejamescode/grid-wiz.git"
},
"scripts": {
"build": "rollup -c",
"deploy": "npm run deploy:npm && npm run deploy:website",
"deploy:website": "npm run build && cd website && npm run deploy && cd ..",
"deploy:npm": "npm run build && npm login && npm publish",
"prepare": "npm run build && cd website && npm i && cd ..",
"start": "npm run && concurrently \"rollup -c -w\" \"cd website && npm run dev\"",
"test": "jest --coverage && npm run build",
"test:snapshots": "jest --updateSnapshot"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"concurrently": "^4.0.1",
"jest": "^23.6.0",
"live-server": "^1.2.1",
"onchange": "^4.1.0",
"rollup": "^0.66.4",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-node-resolve": "^3.4.0"
},
"files": [
"dist"
],
"dependencies": {}
}