forked from facebookarchive/draft-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.87 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": "draft-js",
"description": "A React framework for building text editors.",
"version": "0.9.0",
"keywords": [
"draftjs",
"editor",
"react",
"richtext"
],
"homepage": "http://draftjs.org/",
"bugs": "https://github.com/facebook/draft-js/issues",
"files": [
"dist/",
"lib/",
"LICENSE",
"PATENTS"
],
"main": "lib/Draft.js",
"repository": "facebook/draft-js",
"license": "BSD-3-Clause",
"scripts": {
"prepublish": "npm run build",
"pretest": "node node_modules/fbjs-scripts/node/check-dev-engines.js package.json",
"build": "gulp",
"postbuild": "node node_modules/fbjs-scripts/node/check-lib-requires.js lib",
"lint": "eslint .",
"flow": "flow src",
"test": "NODE_ENV=test jest",
"test-ci": "NODE_ENV=test npm run lint && npm run flow && npm run test"
},
"dependencies": {
"fbjs": "^0.8.7",
"immutable": "~3.7.4",
"object-assign": "^4.1.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-rc",
"react-dom": "^0.14.0 || ^15.0.0-rc"
},
"devDependencies": {
"babel-core": "^6.8.0",
"babel-eslint": "^6.1.2",
"babel-preset-fbjs": "^2.1.0",
"del": "^2.2.0",
"envify": "^3.4.0",
"es6-shim": "^0.34.4",
"eslint": "^3.0.1",
"eslint-config-fbjs": "^1.1.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.17.1",
"eslint-plugin-react": "^5.2.2",
"fbjs-scripts": "^0.7.0",
"flow-bin": "^0.38.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-browserify-thin": "^0.1.5",
"gulp-clean-css": "^2.0.3",
"gulp-concat-css": "^2.2.0",
"gulp-derequire": "^2.1.0",
"gulp-flatten": "^0.2.0",
"gulp-header": "1.8.2",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"jest": "^15.1.1",
"react": "^15.0.0-rc.1",
"react-dom": "^15.0.0-rc.1",
"run-sequence": "^1.1.2",
"through2": "^2.0.1",
"vinyl-buffer": "^1.0.0",
"webpack-stream": "^3.0.0"
},
"devEngines": {
"node": "4.x || 6.x",
"npm": "2.x || 3.x"
},
"jest": {
"automock": true,
"rootDir": "./",
"scriptPreprocessor": "scripts/jest/preprocessor.js",
"setupFiles": [
"node_modules/fbjs-scripts/jest/environment.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/lib/",
"<rootDir>/node_modules/"
],
"preprocessorIgnorePatterns": [
"<rootDir>/node_modules/"
],
"testPathDirs": [
"<rootDir>/src/"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/fbjs/node_modules/",
"<rootDir>/node_modules/fbjs/lib/UserAgent.js",
"<rootDir>/node_modules/fbjs/lib/UserAgentData.js",
"<rootDir>/node_modules/fbjs-scripts/",
"<rootDir>/node_modules/immutable/",
"<rootDir>/node_modules/object-assign/",
"<rootDir>/node_modules/react/",
"<rootDir>/node_modules/react-dom/"
]
}
}