forked from betancourtl/draft-js-custom-styles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.41 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
{
"name": "draft-js-custom-styles",
"version": "2.1.1",
"description": "Create dynamic inline styles for draft-js",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/webdeveloperpr/draft-js-custom-styles.git"
},
"scripts": {
"start": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"test": "mocha --compilers js:babel-core/register --require ./config/test_helper.js --recursive ./tests/*.spec.js",
"test:watch": "npm run test -- --watch",
"watch": "watch 'npm run build' src",
"build": "babel src -d build",
"webpack-build": "NODE_ENV=production webpack -p",
"deploy": "npm run webpack-build && gh-pages -d docs",
"prepare": "npm run build",
"release": "np && npm run deploy"
},
"babel": {
"presets": [
"es2015",
"stage-1",
"react"
]
},
"author": "Luis Betancourt <webdeveloperpr@gmail.com> (https://github.com/webdeveloperpr)",
"license": "MIT",
"engines": {
"node": ">=4.2.4"
},
"peerDependencies": {
"draft-js": "^0.11.7",
"immutable": "^3.x"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "^6.2.1",
"babel-eslint": "7.0.0",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-1": "^6.1.18",
"chai": "^3.5.0",
"css-loader": "0.25.0",
"draft-js-export-html": "0.5.2",
"draft-js-raw-content-state": "1.2.6",
"enzyme": "2.5.1",
"eslint": "3.7.0",
"eslint-config-airbnb": "12.0.0",
"eslint-loader": "1.5.0",
"eslint-plugin-jsx-a11y": "2.2.2",
"eslint-plugin-react": "6.3.0",
"file-loader": "0.9.0",
"gh-pages": "1.0.0",
"immutable": "^3.8.1",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"np": "2.16.1",
"react": "15.5.0",
"react-addons-test-utils": "15.5.0",
"react-dom": "15.5.0",
"sass-loader": "4.0.2",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"watch": "1.0.2",
"webpack": "1.13.2",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"lodash.camelcase": "^4.3.0",
"lodash.snakecase": "^4.1.1"
},
"bugs": {
"url": "https://github.com/webdeveloperpr/draft-js-custom-styles/issues"
},
"homepage": "https://webdeveloperpr.github.io/draft-js-custom-styles",
"keywords": [
"Create",
"dynamic",
"custom",
"styles",
"for",
"draft-js"
]
}