-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.44 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
{
"name": "react-prefixer-provider",
"version": "0.1.0-beta.2",
"description": "Provide a Vendor Prefixer via Context",
"homepage": "https://github.com/wikiwi/react-prefixer-provider",
"repository": {
"type": "git",
"url": "git+https://github.com/wikiwi/react-prefixer-provider.git"
},
"bugs": {
"url": "https://github.com/wikiwi/react-prefixer-provider/issues"
},
"files": [
"dist",
"lib",
"cjs"
],
"jsnext:main": "./lib/index.js",
"main": "./cjs/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"build": "gulp && webpack",
"clean": "rm -r -f dist lib cjs coverage",
"ci:coveralls": "cat coverage/lcov.info | coveralls",
"release": "npm version -m 'react-prefixer-provider release %s'",
"lint": "gulp lint",
"test": "cross-env TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha --opts mocha.opts",
"test:coverage": "cross-env TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' istanbul cover node_modules/.bin/_mocha -- --opts mocha.opts",
"test:watch": "npm run test -- --watch"
},
"engines": {
"node": ">=4"
},
"keywords": [
"prefix",
"hoc",
"context",
"react"
],
"author": "Chi Vinh Le and contributors (https://github.com/wikiwi/react-prefixer-provider/graphs/contributors)",
"license": "MIT",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0"
},
"dependencies": {
"object-assign": "^4.1.0"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/enzyme": "^2.4.36",
"@types/jsdom": "^2.0.29",
"@types/mocha": "^2.2.32",
"@types/object-assign": "^4.0.30",
"@types/react": "^0.14.41",
"awesome-typescript-loader": "^2.2.4",
"cash-rm": "^0.2.0",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"cross-env": "^3.1.3",
"enzyme": "^2.5.1",
"eslint": "^3.8.1",
"eslint-config-airbnb-base": "^9.0.0",
"eslint-plugin-import": "^2.0.1",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-ignore": "^2.0.1",
"gulp-jsonlint": "^1.1.2",
"gulp-sourcemaps": "^2.2.0",
"gulp-tslint": "^6.1.2",
"gulp-typescript": "^3.0.2",
"gulp-yaml-validate": "^1.0.2",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^9.8.0",
"merge2": "^1.0.2",
"mocha": "^3.1.2",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"ts-node": "~1.2.3",
"tslint": "^3.15.1",
"typescript": "^2.0.3",
"webpack": "^2.1.0-beta.25"
}
}