forked from handsontable/react-handsontable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.72 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.72 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
{
"name": "react-handsontable",
"version": "0.3.1",
"description": "A Handsontable component for ReactJS.",
"author": "Handsoncode <hello@handsontable.com>",
"license": "MIT",
"keywords": [
"react",
"reactjs",
"react-component",
"handsontable",
"handsontable pro",
"wrapper"
],
"repository": {
"type": "git",
"url": "https://github.com/handsontable/react-handsontable.git"
},
"bugs": {
"url": "https://github.com/handsontable/react-handsontable/issues"
},
"main": "./dist/react-handsontable.js",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.4",
"expose-loader": "^0.7.3",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"style-loader": "^0.18.2",
"webpack": "^3.2.0",
"babel-jest": "^20.0.3",
"babel-runtime": "~5.8.20",
"cssstyle": "git://github.com/jansiegel/CSSStyleDeclaration.git",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.1",
"generate-release": "^0.10.2",
"jest": "^20.0.4",
"markdown-styles": "^3.1.9",
"rimraf": "^2.5.4",
"uglify-js": "^2.7.5",
"react-test-renderer": "^15.6.1"
},
"dependencies": {
"zeroclipboard": "^2.3.0",
"moment": "^2.17.1",
"numbro": "^1.9.3",
"pikaday": "^1.5.1",
"handsontable": "^0.38.1"
},
"scripts": {
"test": "npm run _pre-testing && jest",
"test:watch": "npm run _pre-testing && jest --watch",
"test:coverage": "npm run _pre-testing && jest --coverage",
"clean": "rimraf dist",
"prepublish": "npm run clean && npm run build",
"build": "webpack && npm run uglify",
"full-build": "npm run build && npm run make-docs",
"make-docs": "npm run _clone-readme && npm run _add-md-tags && npm run _generate-docs && npm run _clean-readme-clone",
"uglify": "uglifyjs ./dist/react-handsontable.js -m -c -o ./dist/react-handsontable.min.js",
"release": "generate-release",
"_pre-testing": "node ./node_modules/cssstyle/scripts/generate_properties.js",
"_clone-readme": "cp README.md index.md",
"_clean-readme-clone": "rm index.md",
"_add-md-tags": "echo $'title: Handsontable component for React\\n---\\n' | cat - index.md > /tmp/out && mv /tmp/out index.md",
"_generate-docs": "rimraf ./docs && ./node_modules/markdown-styles/bin/generate-md --layout github --input index.md --output ./docs"
},
"jest": {
"setupFiles": [
"./test/jestsetup.js"
],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"globals": {
"__HOT_BUILD_DATE__": "",
"__HOT_PACKAGE_NAME__": "",
"__HOT_VERSION__": "",
"__HOT_BASE_VERSION__": ""
}
}
}