-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
39 lines (39 loc) · 949 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
{
"name": "dnh-cppcoban",
"version": "1.0.0",
"description": "Day nhau hoc Cpp co ban",
"main": "index.js",
"scripts": {
"lint": "remark --quiet --frail .",
"test": "npm run lint",
"test:code": "ava codes/**/__tests__/*.test.js --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daynhauhoc/cppcoban.git"
},
"private": true,
"homepage": "https://github.com/daynhauhoc/cppcoban#readme",
"dependencies": {
"got": "^6.3.0",
"join-uri": "^1.0.1",
"remark": "^4.2.1",
"remark-lint": "^3.2.0",
"unist-util-visit": "^1.1.0"
},
"devDependencies": {
"ava": "^0.14.0"
},
"remarkConfig": {
"commonmark": true,
"plugins": {
"lint": {
"list-item-bullet-indent": false,
"list-item-spacing": false,
"first-heading-level": 2,
"no-html": false,
"external": ["./codes/rules/check-image-ref.js"]
}
}
}
}