-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.79 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
{
"name": "tdast-util-to-json",
"version": "0.1.1",
"description": "tdast utility to serialize tdast to a JSON array string",
"license": "MIT",
"homepage": "https://github.com/tdast/tdast-util-to-json",
"repository": "https://github.com/tdast/tdast-util-to-json",
"bugs": "https://github.com/tdast/tdast-util-to-json/issues",
"author": "Chris Zhou <[email protected]> (https://chrisrzhou.io)",
"keywords": [
"tdast",
"util",
"json",
"array",
"tabular",
"data",
"ast",
"unist"
],
"scripts": {
"bootstrap": "npm install",
"build": "microbundle",
"clean": "rm -rf dist",
"dev": "microbundle watch",
"lint": "xo --fix; tsc",
"prepare": "npm run clean; npm run build",
"release": "standard-version -s --infile changelog.md",
"test": "jest --watch packages",
"test:run": "jest"
},
"main": "dist/index.js",
"module": "dist/index.module.js",
"source": "index.js",
"typings": "types/index.d.ts",
"files": [
"dist",
"types"
],
"dependencies": {
"tdast-types": "^0.1.2",
"tdast-util-to-array": "^0.1.1"
},
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"@types/jest": "^26.0.9",
"babel-jest": "^26.2.2",
"husky": "^4.3.0",
"jest": "^26.4.2",
"microbundle": "^0.12.3",
"standard-version": "^9.0.0",
"tdastscript": "^0.1.2",
"typescript": "^4.0.2",
"xo": "^0.33.1"
},
"husky": {
"hooks": {
"pre-push": "npm prepare; npm run lint; npm run test:run"
}
},
"prettier": {
"bracketSpacing": true,
"jsxBracketSameLine": true,
"trailingComma": "all",
"useTabs": false
},
"xo": {
"env": [
"jest"
],
"prettier": true,
"rules": {
"capitalized-comments": "off",
"padding-line-between-statements": "off"
}
}
}