-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.1 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
{
"author": "The Daily Beast",
"dependencies": {
"uuid": "^3.2.1"
},
"peerDependencies": {
"react": "^16.2.0"
},
"jest": {
"testPathIgnorePatterns": [
"node_modules",
"dist"
]
},
"description": "Mobiledoc renderer that outputs valid react jsx",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.41",
"@babel/core": "^7.0.0-beta.41",
"@babel/preset-env": "^7.0.0-beta.41",
"@babel/preset-react": "^7.0.0-beta.41",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.0.0-alpha.0",
"brace-expansion": "^1.1.11",
"jest": "^22.4.2",
"react": "^16.2.0",
"react-dom": "^16.2.1",
"react-test-renderer": "^16.2.0",
"semistandard": "^12.0.1"
},
"license": "MIT",
"main": "dist/index.js",
"name": "@dailybeast/mobiledoc-react-renderer",
"scripts": {
"build": "rimraf dist && babel src -d dist",
"jest": "jest",
"lint": "semistandard",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm run test",
"start": "babel-node src/index.js",
"test": "semistandard && jest"
},
"version": "1.5.0"
}