-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1010 Bytes
/
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
{
"name": "@geut/chan-core",
"version": "2.2.0",
"description": "API and transforms to work with chast",
"homepage": "http://geutstudio.com",
"main": "index.js",
"author": {
"name": "GEUT",
"email": "contact@geutstudio.com"
},
"license": "ISC",
"repository": "https://github.com/geut/chan/tree/master/packages/chan-core",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@geut/chan-stringify": "^2.2.0",
"@geut/chast": "^2.2.0",
"@geut/remark-chan": "^2.2.0",
"remark-parse": "^6.0.3",
"semver": "^5.6.0",
"unified": "^7.1.0",
"unist-util-remove-position": "^1.1.2",
"unist-util-select": "^2.0.0"
},
"devDependencies": {
"eslint": "^5.12.0",
"jest": "^24.8.0",
"jest-date-mock": "^1.0.7",
"to-vfile": "^5.0.2",
"vfile-reporter": "^5.1.1"
},
"scripts": {
"test": "jest",
"lint": "eslint . --ignore-path ../../.eslintignore"
},
"jest": {
"setupFiles": [
"jest-date-mock"
]
}
}