This repository has been archived by the owner on May 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.21 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
{
"name": "@vhx/quartz-react",
"version": "0.1.28",
"description": "React Components for VHX Quartz",
"main": "dist/quartz-react.js",
"scripts": {
"build": "node build/build-css.js && rollup -c build/rollup.config.js",
"deploy": "firebase deploy",
"dev": "rollup -c build/rollup.demo-config.js --watch",
"lint": "eslint components/**/** demo/** build/** index.js",
"serve": "browser-sync start --server --serveStatic \"docs/\" --files \"docs/js/bundle.js\" --no-open",
"start": "npm-run-all --parallel dev serve",
"test": "nyc --extension .jsx --reporter=html --reporter=text-summary mocha components/**/*.test.jsx --compilers js:babel-register",
"test:nocover": "mocha components/**/*.test.jsx --compilers js:babel-register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vhx/quartz-react.git"
},
"keywords": [
"vhx",
"quartz",
"vimeo",
"react",
"components"
],
"author": "VHX",
"license": "MIT",
"bugs": {
"url": "https://github.com/sebastiansandqvist/quartz-react/issues"
},
"homepage": "https://github.com/vhx/quartz-react.git#readme",
"devDependencies": {
"@vhx/eslint-config-vhx": "0.0.1",
"autoprefixer": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"browser-sync": "^2.18.12",
"chai": "^4.0.2",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"firebase-tools": "^3.9.2",
"jsdom": "11.11.0",
"mocha": "^3.4.2",
"mocha-jsdom": "2.0.0",
"npm-run-all": "^4.0.2",
"nyc": "^11.0.3",
"react-test-renderer": "^15.5.4",
"rollup": "^0.42.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-filesize": "^1.3.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-watch": "^3.2.2"
},
"dependencies": {
"bluebird": "^3.5.0",
"classnames": "^2.2.5",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4"
}
}