This repository has been archived by the owner on Jul 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.65 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
{
"name": "@enkidevs/curriculum-parser",
"version": "0.3.1",
"description": "Enki curriculum parser",
"main": "src/index.js",
"scripts": {
"format": "prettier-standard 'src/**/*.js'",
"lint": "eslint . --ignore-path .gitignore",
"prepublishOnly": "npm run test",
"pretest": "npm run lint",
"test:watch": "jest --watchAll",
"test": "npm run lint && jest --notify"
},
"keywords": [
"enki",
"curriculum",
"parser",
"ast"
],
"pre-commit": [
"format",
"test"
],
"files": [
"src"
],
"author": "Nemanja Stojanovic <[email protected]>",
"lint-staged": {
"linters": {
"src/**/*.js": [
"prettier-standard",
"git add"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/enkidevs/curriculum-parser.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/enkidevs/curriculum-parser/issues"
},
"homepage": "https://github.com/enkidevs/curriculum-parser#readme",
"devDependencies": {
"jest": "^22.4.2",
"jest-in-case": "^1.0.2",
"lint-staged": "^7.0.0",
"pre-commit": "^1.2.2",
"prettier-standard": "^8.0.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"decode-uri-component": "^0.2.0",
"install": "^0.10.4",
"js-yaml": "^3.11.0",
"mdast-util-compact": "^1.0.1",
"mdast-util-heading-range": "^2.1.0",
"npm": "^5.7.1",
"remark-frontmatter": "^1.2.0",
"remark-parse": "^5.0.0",
"remark-stringify": "^5.0.0",
"unified": "^6.1.6",
"unist-util-map": "^1.0.3",
"unist-util-visit": "^1.3.0"
},
"jest": {
"testRegex": "/src.*__tests__/.*\\.test.js$"
}
}