forked from sugarshin/draft-js-checkable-list-item
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.28 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
{
"name": "draft-js-checkable-list-item",
"version": "3.0.4",
"description": "Checkable list item for Draft.js",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"lib",
"es"
],
"keywords": [
"react",
"draft-js",
"checkbox",
"checkable-list-item"
],
"scripts": {
"start": "webpack-dev-server --progress",
"clean:lib": "if [ -d lib ]; then rm -rf lib; fi",
"clean:es": "if [ -d es ]; then rm -rf es; fi",
"precompile": "npm run clean:lib && npm run clean:es",
"stylus": "stylus src -c -o lib",
"compile:commonjs": "NODE_ENV=production BABEL_ENV=commonjs babel -d lib src",
"compile:es": "NODE_ENV=production BABEL_ENV=es babel -d es src",
"compile": "npm run compile:commonjs && npm run compile:es && npm run stylus",
"check": "npm run lint && npm run type",
"lint": "eslint src tests",
"type": "flow",
"jest": "jest",
"jest:coverage": "jest --coverage",
"test": "npm run check && npm run jest:coverage",
"coverage:report": "cat coverage/lcov.info | coveralls",
"favicon": "curl https://sugarshin.net/favicon.ico > build/favicon.ico",
"clean:build": "if [ -d build ]; then rm -rf build; fi",
"prebuild": "npm run clean:build; mkdir -p build && npm run favicon",
"build": "NODE_ENV=production webpack",
"deploy": "/bin/bash scripts/deploy.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sugarshin/draft-js-checkable-list-item.git"
},
"author": "sugarshin",
"license": "MIT",
"bugs": {
"url": "https://github.com/sugarshin/draft-js-checkable-list-item/issues"
},
"homepage": "https://github.com/sugarshin/draft-js-checkable-list-item#readme",
"peerDependencies": {
"draft-js": "~0.10.0 || ~0.9.0",
"react": "^16.0.0 || ^15.0.0 || ~0.14.0",
"react-dom": "^16.0.0 || ^15.0.0 || ~0.14.0"
},
"dependencies": {
"draft-js-modifiers": "~0.2.2",
"immutable": "~3.7.4"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.47",
"@babel/core": "^7.0.0-beta.47",
"@babel/plugin-transform-flow-strip-types": "^7.0.0-beta.47",
"@babel/polyfill": "^7.0.0-beta.47",
"@babel/preset-es2015": "^7.0.0-beta.47",
"@babel/preset-react": "^7.0.0-beta.47",
"@babel/preset-stage-2": "^7.0.0-beta.47",
"babel-core": "^7.0.0-0",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.4",
"babel-loader": "^8.0.0-beta.3",
"coveralls": "^3.0.1",
"css-loader": "^0.28.11",
"draft-js": "~0.10.5",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flowtype": "^2.47.1",
"eslint-plugin-react": "^7.8.2",
"flow-bin": "^0.70.0",
"html-webpack-plugin": "^2.30.1",
"jest": "^22.4.4",
"raf": "^3.4.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-ghfork": "^0.5.1",
"react-hot-loader": "^4.2.0",
"react-test-renderer": "^16.3.2",
"regenerator-runtime": "^0.11.1",
"style-loader": "^0.21.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
},
"jest": {
"testRegex": "/tests/.*-test\\.js$",
"setupFiles": [
"raf/polyfill",
"<rootDir>/tests/config/enzyme.js"
]
}
}