This repository has been archived by the owner on Sep 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
92 lines (92 loc) · 2.89 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
88
89
90
91
92
{
"name": "react-islands",
"version": "0.17.0",
"description": "A set of react components implementing Yandex's islands design",
"main": "components/index.js",
"files": [
"*.md",
"LICENSE",
"components",
"src"
],
"scripts": {
"clean": "rm -rf components src/index.js",
"lint": "eslint --cache --ignore-path .gitignore src",
"start": "gulp",
"unit": "mocha --compilers js:babel-register -r jsdom-global/register src/**/test.js",
"test": "npm run unit",
"pretest": "npm run lint",
"build": "babel src --only index.js --out-dir components",
"build-prod": " NODE_ENV=production npm run build",
"prebuild": "./scripts/generate-main.sh",
"prepublish": "npm run clean && npm test && npm run build-prod"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git://github.com/narqo/react-islands.git"
},
"author": "Vladimir Varankin <[email protected]> (https://github.com/narqo)",
"contributors": [
"Sergey Nikitin <[email protected]> (https://github.com/pasaran)",
"Ilya Caulfield <[email protected]> (https://github.com/VodkaBears)",
"Aleksei Androsov <[email protected]> (https://github.com/doochik)"
],
"license": "MIT",
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"lodash": "^4.15.0",
"warning": "^3.0.0"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.8.0",
"babel-core": "^6.3.26",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-react-constant-elements": "^6.5.0",
"babel-plugin-transform-react-pure-class-to-function": "^1.0.1",
"babel-plugin-transform-react-remove-prop-types": "^0.2.7",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.13.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.7.2",
"babelify": "^7.3.0",
"browser-sync": "^2.12.5",
"browserify": "^13.0.0",
"browserify-global-shim": "^1.0.3",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.0",
"cheerio": "^0.20.0",
"enzyme": "^2.2.0",
"eslint": "^2.8.0",
"eslint-plugin-react": "^5.1.0",
"glob": "^7.0.3",
"gulp": "gulpjs/gulp#4.0",
"gulp-changed": "^1.3.0",
"gulp-jade": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-util": "^3.0.7",
"jsdom": "^9.1.0",
"jsdom-global": "^2.0.0",
"merge-stream": "^1.0.0",
"mocha": "^3.1.2",
"pre-commit": "^1.1.3",
"react": "^15.0.2",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^15.0.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
}
}