-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.37 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
{
"name": "react-canvas-grid",
"version": "0.13.1",
"description": "A simple, canvas-based, React-friendly datagrid component",
"homepage": "https://rowanhill.github.io/react-canvas-grid",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest && cypress run --browser chrome",
"cypress": "cypress open",
"cypress:once": "cypress run --browser chrome",
"jest": "jest --watch",
"jest:once": "jest",
"tslint": "tslint src/**/*.ts* cypress/**/*.ts* examples/**/*.ts*"
},
"keywords": [
"react",
"datagrid",
"grid",
"canvas"
],
"author": "Rowan Hill",
"license": "ISC",
"peerDependencies": {
"react": "16.x"
},
"dependencies": {
"instigator": "^0.6.1",
"shallow-equals": "^1.0.0"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^4.0.3",
"@types/enzyme": "^3.9.0",
"@types/jest": "^24.0.25",
"@types/react": "^16.8.1",
"@types/shallow-equals": "^1.0.0",
"cypress": "^4.7.0",
"cypress-image-snapshot": "^3.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"jest": "^24.9.0",
"react": "^16.7.0",
"react-dom": "^16.8.3",
"ts-jest": "^24.0.0",
"ts-loader": "^5.3.3",
"tslint": "^5.13.1",
"typescript": "^3.3.1",
"webpack": "^4.29.6"
}
}