-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.5 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
{
"name": "kitchen-table",
"version": "2.2.0",
"description": "Simple and extensible React table component",
"main": "dist/KitchenTable.js",
"scripts": {
"clean": "rimraf dist",
"build": "webpack",
"watch": "webpack --watch",
"test": "jest",
"test-watch": "jest --watch",
"prepublishOnly": "npm run clean && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adamciolkowski/kitchen-table.git"
},
"keywords": [
"react",
"table"
],
"author": "Adam Ciołkowski",
"license": "MIT",
"peerDependencies": {
"react": "15.x.x"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/jest": "^20.0.4",
"@types/lodash": "^4.14.70",
"@types/node": "^8.0.25",
"@types/react": "^15.0.38",
"@types/react-dom": "^15.5.1",
"chai": "^4.0.2",
"css-loader": "^0.28.4",
"jest": "^20.0.4",
"node-sass": "^4.5.3",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"ts-loader": "^2.3.0",
"typescript": "^2.3.4",
"webpack": "^2.2.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"moduleNameMapper": {
"\\.scss$": "<rootDir>/mocks/styleMock.js"
},
"testRegex": "src/.*\\.test\\.tsx?",
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
}
},
"dependencies": {
"lodash": "^4.17.4"
}
}