-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
65 lines (65 loc) · 1.54 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
{
"name": "redocx",
"description": "Create word documents with React",
"version": "1.1.4",
"repository": "https://github.com/nitin42/redocx",
"main": "./lib/index.js",
"author": "Nitin Tulswani",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"build": "NODE_ENV=production babel src -d lib",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"example": "babel-node ./demo/word.js",
"example-mem": "babel-node ./demo/word-memory.js",
"lint": "eslint ./src",
"prebuild": "rm -rf ./lib"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --no-semi --write",
"git add"
]
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"chroma-js": "^1.3.4",
"execa": "^0.8.0",
"fbjs": "^0.8.4",
"memory-streams": "0.1.3",
"minimatch": "^3.0.4",
"officegen": "^0.4.5",
"react": "^16.0.0",
"react-reconciler": "0.2.0",
"validator": "^8.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "7",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"diff-react": "^1.0.5",
"eslint": "^4.4.1",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"jest": "^20.0.4",
"lint-staged": "^4.2.1",
"prettier": "^1.7.0"
},
"keywords": [
"renderer",
"react",
"word documents",
"custom renderer",
"fiber"
]
}