-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
106 lines (106 loc) · 4.25 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "react-armor",
"version": "0.0.0",
"description": "Protect your DOM from third-party tampering!",
"main": "dist/node/prod/lib/index.js",
"browser": "dist/browser/lib/app/index.js",
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elierotenberg/react-armor.git"
},
"author": "Elie Rotenberg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/elierotenberg/react-armor/issues"
},
"homepage": "https://github.com/elierotenberg/react-armor#readme",
"private": true,
"devDependencies": {
"babel-eslint": "^5.0.0-beta6",
"babel-plugin-react-display-name": "^2.0.0",
"babel-plugin-syntax-async-functions": "^6.3.13",
"babel-plugin-syntax-async-generators": "^6.3.13",
"babel-plugin-syntax-class-constructor-call": "^6.3.13",
"babel-plugin-syntax-class-properties": "^6.3.13",
"babel-plugin-syntax-decorators": "^6.3.13",
"babel-plugin-syntax-flow": "^6.3.13",
"babel-plugin-syntax-jsx": "^6.3.13",
"babel-plugin-syntax-object-rest-spread": "^6.3.13",
"babel-plugin-syntax-trailing-function-commas": "^6.3.13",
"babel-plugin-transform-async-to-module-method": "^6.4.0",
"babel-plugin-transform-class-constructor-call": "^6.4.0",
"babel-plugin-transform-class-properties": "^6.4.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-arrow-functions": "^6.4.0",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoping": "^6.4.0",
"babel-plugin-transform-es2015-classes": "^6.4.5",
"babel-plugin-transform-es2015-computed-properties": "^6.4.0",
"babel-plugin-transform-es2015-constants": "^6.1.4",
"babel-plugin-transform-es2015-destructuring": "^6.4.0",
"babel-plugin-transform-es2015-for-of": "^6.3.13",
"babel-plugin-transform-es2015-function-name": "^6.4.0",
"babel-plugin-transform-es2015-literals": "^6.3.13",
"babel-plugin-transform-es2015-modules-commonjs": "^6.4.5",
"babel-plugin-transform-es2015-object-super": "^6.4.0",
"babel-plugin-transform-es2015-parameters": "^6.4.5",
"babel-plugin-transform-es2015-shorthand-properties": "^6.3.13",
"babel-plugin-transform-es2015-spread": "^6.4.0",
"babel-plugin-transform-es2015-sticky-regex": "^6.3.13",
"babel-plugin-transform-es2015-template-literals": "^6.3.13",
"babel-plugin-transform-es2015-typeof-symbol": "^6.4.3",
"babel-plugin-transform-es2015-unicode-regex": "^6.4.3",
"babel-plugin-transform-eval": "^6.3.13",
"babel-plugin-transform-exponentiation-operator": "^6.3.13",
"babel-plugin-transform-flow-strip-types": "^6.4.0",
"babel-plugin-transform-jscript": "^6.4.0",
"babel-plugin-transform-object-assign": "^6.3.13",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-plugin-transform-object-set-prototype-of-to-assign": "^6.3.13",
"babel-plugin-transform-proto-to-assign": "^6.4.0",
"babel-plugin-transform-react-constant-elements": "^6.4.0",
"babel-plugin-transform-react-display-name": "^6.4.0",
"babel-plugin-transform-react-inline-elements": "^6.4.0",
"babel-plugin-transform-react-jsx": "^6.4.0",
"babel-plugin-transform-regenerator": "^6.4.4",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-plugin-transform-undefined-to-void": "^6.3.13",
"babel-register": "^6.4.3",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^3.15.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-changed": "^1.3.0",
"gulp-eslint": "^1.1.1",
"gulp-mocha": "^2.2.0",
"gulp-plumber": "^1.0.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"json-loader": "^0.5.4",
"mocha": "^2.3.4",
"postcss": "^5.0.15",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"rimraf": "^2.5.0",
"run-sequence": "^1.1.5",
"should": "^8.1.1",
"source-map-support": "^0.4.0",
"through2": "^2.0.0"
},
"dependencies": {
"babel-polyfill": "^6.3.14",
"babel-runtime": "^6.3.19",
"bluebird": "^3.1.1",
"lodash": "^4.0.0",
"react-traverse": "0.0.3",
"seedrandom": "^2.4.2"
},
"peerDependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7"
}
}