-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.93 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
{
"name": "@sanity/block-content-to-markdown",
"description": "Transforming Sanity block content to markdown",
"version": "0.0.6",
"main": "lib/toMarkdown.js",
"umd": "umd/toMarkdown.min.js",
"unpkg": "umd/toMarkdown.min.js",
"scripts": {
"build": "npm run clean && npm run compile && npm run browserify && npm run minify",
"browserify": "NODE_ENV=production BROWSERIFY_ENV=build DEBUG='' browserify -t envify -g uglifyify ./index.js -o umd/toMarkdown.js --standalone=SanityBlockContentToMarkdown",
"watch": "npm run compile -- --watch",
"clean": "rimraf lib coverage .nyc_output",
"compile": "babel --source-maps --copy-files -d lib/ src/",
"coverage": "npm test -- --coverage",
"minify": "uglifyjs -c -m -- umd/toMarkdown.js > umd/toMarkdown.min.js",
"postpublish": "npm run clean",
"posttest": "eslint .",
"prepublishOnly": "npm run build",
"test": "NODE_ENV=test jest"
},
"keywords": [],
"author": "Sanity <hello@sanity.io>",
"license": "MIT",
"dependencies": {
"@sanity/block-content-to-hyperscript": "^2.0.5"
},
"devDependencies": {
"@sanity/block-content-tests": "^0.2.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-preset-env": "^1.6.0",
"browserify": "^16.2.2",
"envify": "^4.1.0",
"eslint": "^4.19.0",
"eslint-config-prettier": "^2.4.0",
"eslint-config-sanity": "^4.0.2",
"eslint-plugin-import": "^2.12.0",
"jest": "^23.0.1",
"prettier": "^1.13.2",
"rimraf": "^2.6.2",
"uglify-js": "^3.4.8",
"uglifyify": "^5.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanity-io/block-content-to-markdown.git"
},
"bugs": {
"url": "https://github.com/sanity-io/block-content-to-markdown/issues"
},
"homepage": "https://github.com/sanity-io/block-content-to-markdown#readme",
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.js"
]
}
}