-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 972 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
43
{
"name": "11ty_exercise",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Juansereina",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^0.9.0",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@testing-library/dom": "^6.11.0",
"@testing-library/jest-dom": "^4.2.4",
"babel-jest": "^24.9.0"
},
"dependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^2.0.3",
"jest": "^24.9.0",
"markdown-it": "^10.0.0",
"prismjs": "^1.17.1"
},
"jest": {
"collectCoverage": true,
"modulePaths": [
"./node_modules"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"moduleFileExtensions": [
"js",
"md"
],
"transform": {
"\\.md$": "<rootDir>/preprocessor"
}
}
}