-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
87 lines (87 loc) · 2.34 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
{
"name": "react-selection",
"version": "0.1.0",
"description": "Like the OS selection",
"main": "dist/react-selection.min.js",
"scripts": {
"dev": "webpack-dev-server --inline --hot --content-base demo/",
"build": "WEBPACK=prod babel-node scripts/build",
"build.demo": "WEBPACK=demo webpack",
"test": "nyc ava -v",
"test.watch": "nyc ava -vw",
"test.ui": "nightwatch",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"report": "nyc report --reporter=html && open ./coverage/index.html"
},
"keywords": [
"react",
"selection"
],
"author": "Rocky Wu <[email protected]>",
"license": "MIT",
"ava": {
"require": [
"babel-core/register",
"./test/setup/jsdom",
"./test/setup/require-hook"
],
"babel": "inherit",
"files": [
"test/*.spec.js"
]
},
"nyc": {
"extension": [
".jsx"
]
},
"devDependencies": {
"ava": "^0.14.0",
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-react-constant-elements": "^6.8.0",
"babel-plugin-transform-react-inline-elements": "^6.8.0",
"babel-plugin-transform-remove-console": "^6.8.0",
"babel-plugin-transform-strict-mode": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"chalk": "^1.1.3",
"coveralls": "^2.11.9",
"css-loader": "^0.23.1",
"enzyme": "^2.2.0",
"eslint": "^2.7.0",
"extract-text-webpack-plugin": "^1.0.1",
"glob": "^7.0.3",
"gulp": "^3.9.1",
"gulp-clean-css": "^2.0.7",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.3",
"jsdom": "^9.0.0",
"nyc": "^6.4.3",
"react": "^15.0.1",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.1",
"shelljs": "^0.7.0",
"sinon": "^1.17.4",
"style-loader": "^0.13.1",
"stylus-loader": "^2.0.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"directories": {
"test": "test"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/rwu823/react-selection.git"
},
"bugs": {
"url": "https://github.com/rwu823/react-selection/issues"
},
"homepage": "https://github.com/rwu823/react-selection#readme"
}