-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.81 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.81 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "react-vis-gridarea",
"version": "0.0.1",
"description": "Grid Area in react-vis charts",
"license": "MIT",
"repository": "https://github.com/bendtherules/react-vis-gridarea",
"author": {
"name": "Abhas Bhattacharya",
"email": "abhasbhattacharya2@gmail.com",
"url": "https://github.com/bendtherules/react-vis-gridarea"
},
"keywords": [
"react-vis",
"grid-area"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepare": "npm run build",
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty && webpack",
"dev": "webpack-dev-server --progress --open-page dist/",
"demo": "npm run build && http-server dist -o",
"test": "jest",
"coverage": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"dependencies": {
"prop-types": "^15.6.2"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-links": "^3.4.8",
"@storybook/addons": "^3.4.8",
"@storybook/react": "^3.4.8",
"@storybook/storybook-deployer": "^2.3.0",
"@types/jest": "^22.0.1",
"@types/node": "^8.0.0",
"@types/prop-types": "^15.5.3",
"@types/react": "^16.4.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.2",
"babel-plugin-module-resolver": "^2.4.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "6.18.0",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.18.0",
"babel-runtime": "^6.26.0",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"canvas-prebuilt": "^1.6.0",
"copy-webpack-plugin": "^4.4.1",
"coveralls": "^2.0.0",
"css-loader": "^0.28.11",
"enzyme": "^2.8.2",
"eslint": "^3.13.1",
"eslint-config-uber-es2015": "^3.0.1",
"eslint-config-uber-jsx": "^3.0.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"hoek": "5.0.3",
"http-server": "^0.11.1",
"jest": "^22.0.4",
"jest-environment-node-debug": "^2.0.0",
"jsdom": "^9.9.1",
"node-sass": "^4.2.0",
"nyc": "^10.0.0",
"prettier": "^1.5.2",
"react": "^15.5.4",
"react-addons-test-utils": ">=15.4.2",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"react-vis": "^1.9.4",
"rimraf": "^2.0.0",
"style-loader": "^0.21.0",
"stylelint": "^7.7.1",
"stylelint-config-standard": "^15.0.1",
"tape": "^4.6.3",
"ts-jest": "^22.0.1",
"ts-loader": "^3.4.0",
"ts-node": "^3.2.0",
"tslint": "^5.0.0",
"tslint-config-prettier": "^1.1.0",
"typescript": "^2.3.0",
"uglify-js": "^2.8.22",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
},
"engines": {
"node": ">=6.0.0"
},
"jest": {
"transform": {
".(ts)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node",
"mapCoverage": true
},
"peerDependencies": {
"react": "^15.5.4",
"react-vis": "^1.9.4"
},
"storybook-deployer": {
"gitUsername": "bendtherules",
"gitEmail": "abhasbhattacharya2@gmail.com",
"commitMessage": "Deploy Storybook to Github Pages [skip ci]"
}
}