-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
60 lines (60 loc) · 1.45 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
{
"name": "react-datalist",
"version": "4.0.0",
"description": "A <datalist> polyfill for reactjs",
"main": "./lib/ReactDataList",
"scripts": {
"test": "mocha --compilers js:babel/register,styl:mocha-stylus-compiler -R nyan --check-leaks -w",
"build": "babel --plugins babel-plugin-stylus src/ --out-dir lib"
},
"repository": {
"type": "git",
"url": "git://github.com/asbjornenge/react-datalist.git"
},
"keywords": [
"browser",
"datalist",
"dom",
"react",
"react-component"
],
"author": "Asbjorn Enge <asbjorn@hanafjedle.net>",
"license": "BSD",
"bugs": {
"url": "https://github.com/asbjornenge/react-datalist/issues"
},
"homepage": "https://github.com/asbjornenge/react-datalist",
"browser": {
"jsdom": false
},
"testling": {
"harness": "mocha-bdd",
"files": "test/spec.js",
"browsers": [
"ie/9..latest",
"chrome/23..latest",
"firefox/22..latest",
"safari/latest",
"opera/12..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"devDependencies": {
"babel": "^5.8.29",
"babel-plugin-stylus": "^1.0.0",
"babelify": "^6.4.0",
"lodash": "^2.4.1",
"mocha": "^1.18.2",
"mocha-stylus-compiler": "^1.0.0",
"nanodom": "0.0.3",
"react-addons-test-utils": "^0.14.1",
"stylusify": "^1.0.0",
"testdom": "^2.0.0"
}
}