-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
75 lines (75 loc) · 2.49 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
{
"name": "react-virtualized-sticky-tree",
"description": "A React component for efficiently rendering tree like structures with support for position: sticky",
"version": "2.1.30",
"author": "Marc McIntyre <[email protected]>",
"license": "MIT",
"main": "dist/commonjs/index.js",
"module": "dist/es/index.js",
"homepage": "https://github.com/marchaos/react-virtualized-sticky-tree#readme",
"repository": {
"type": "git",
"url": "https://github.com/marchaos/react-virtualized-sticky-tree.git"
},
"keywords": [
"react",
"virtualized",
"react-virtualized",
"tree",
"position",
"sticky"
],
"scripts": {
"build": "npm run build:commonjs && npm run build:es",
"build:commonjs": "npm run clean:commonjs && cross-env NODE_ENV=production cross-env BABEL_ENV=commonjs babel src --out-dir dist/commonjs --ignore *.spec.js",
"build:es": "npm run clean:es && cross-env NODE_ENV=production cross-env BABEL_ENV=es babel src --out-dir dist/es --ignore *.spec.js",
"prepublish": "npm run build",
"clean:commonjs": "rimraf dist/commonjs",
"clean:es": "rimraf dist/es",
"test": "mocha \"test/**/*spec.js*\" --compilers js:babel-register --reporter=dot",
"prepare": "npm run build"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/marchaos/react-virtualized-sticky-tree/issues"
},
"peerDependencies": {
"prop-types": "^15.6.1",
"react": "^16.0.0",
"react-measure": "^2.0.2"
},
"devDependencies": {
"webpack": "latest",
"babel-cli": "6.8.0",
"babel-core": "latest",
"babel-loader": "latest",
"cross-env": "latest",
"rimraf": "latest",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-constant-elements": "latest",
"babel-plugin-transform-react-inline-elements": "latest",
"babel-plugin-transform-react-remove-prop-types": "latest",
"babel-polyfill": "^6.13.0",
"babel-preset-airbnb": "^2.0.0",
"babel-preset-es2015": "latest",
"babel-preset-react": "latest",
"babel-preset-stage-0": "latest",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"chai-enzyme": "latest",
"enzyme": "latest",
"eslint": "^4.19.1",
"eslint-config-airbnb": "latest",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.0",
"eslint-plugin-react": "^7.0.0",
"jsdom": "10.1.0",
"jsdom-global": "latest",
"json-loader": "^0.5.4",
"mocha": "^3.4.2",
"nyc": "^8.3.1",
"testdouble": "^1.8.0"
}
}