This repository was archived by the owner on Feb 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
110 lines (110 loc) · 3.06 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
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
{
"name": "react-table-model",
"description": "An abstraction over table to provide a better component model for data tables",
"version": "1.0.1",
"license": "Apache-2.0",
"keywords": [
"react",
"data",
"table",
"component",
"model",
"react-component"
],
"homepage": "https://github.com/concur/react-table-model#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/concur/react-table-model.git"
},
"bugs": {
"url": "https://github.com/concur/react-table-model/issues"
},
"author": {
"name": "Concur Technologies",
"url": "https://github.com/concur"
},
"contributors": [
{
"name": "Jeff Handley",
"email": "[email protected]",
"url": "https://github.com/jeffhandley"
},
{
"name": "Brad Ullman",
"email": "[email protected]",
"url": "https://github.com/bcullman"
}
],
"directories": {
"lib": "./lib"
},
"main": "lib/index.js",
"files": [
"*.md",
"lib",
"dist"
],
"scripts": {
"prelint": "echo 'Lint Starting:' && echo ' glob: '${npm_config_glob:-${npm_package_config_lint_glob} (default)}",
"lint": "eslint --ext .js,.jsx ${npm_config_glob:-${npm_package_config_lint_glob}}",
"lint:watch": "nodemon -e js,jsx --exec 'npm run lint --silent || true'",
"postlint": "echo 'Lint Complete'",
"test": "jest",
"test:watch": "nodemon -e js,jsx --exec 'npm run test --silent || true'",
"clean": "rm -rf ./lib && rm -rf ./dist",
"posttest": "echo 'Tests Complete'",
"prebuild": "npm run lint --silent && npm run test && echo 'Build Starting'",
"build": "babel src -d lib && webpack",
"postbuild": "echo 'Build Complete'",
"rebuild": "npm run clean && npm run build",
"demo": "NODE_ENV=development nodemon -e js,jsx --exec 'babel-node demo'",
"release": "npm run clean && npm run build && standard-version"
},
"config": {
"lint_glob": ".",
"test_glob": "./test"
},
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-core": "^6.6.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.3.13",
"create-react-class": "^15.6.3",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.3",
"eslint": "^3.15.0",
"eslint-plugin-react": "^5.2.2",
"expect": "^1.20.2",
"express": "^4.13.4",
"express-beautify": "^0.1.2",
"fsevents": "^1.2.4",
"jest": "^22.4.4",
"jsdom": "^9.4.1",
"nodemon": "^1.8.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-router": "^3.0.0",
"react-test-renderer": "^16.0.0",
"standard-version": "^4.3.0",
"webpack": "^2.3.3",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"jest": {
"setupFiles": [
"./test/setup.js"
]
}
}