-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.62 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
{
"name": "twig-testing-library",
"version": "0.0.0-development",
"description": "Simple and complete Twig testing utilities that encourage good testing practices.",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"pretest": "npm run-script build",
"build": "rm -rf dist && rollup -c",
"format": "prettier --write \"{test,src}/**/*.js\"",
"lint": "prettier --check \"{test,src}/**/*.js\"",
"coverage": "jest --collect-coverage --collectCoverageFrom=\"src/**/*.js\"",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/larowlan/twig-testing-library.git"
},
"keywords": [
"testing",
"ui",
"dom",
"jsdom",
"unit",
"integration",
"functional",
"end-to-end",
"e2e",
"twig"
],
"author": "Lee Rowlands (https://github.com/larowlan)",
"license": "MIT",
"bugs": {
"url": "https://github.com/larowlan/twig-testing-library/issues"
},
"homepage": "https://github.com/larowlan/twig-testing-library#readme",
"dependencies": {
"@babel/runtime": "^7.14.6",
"@testing-library/dom": "^8.0.0",
"core-js": "^3.15.2",
"drupal-attribute": "^1.0.2",
"twig": "^1.15.4"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"babel-jest": "^27.0.6",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"rollup": "^2.52.6",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4",
"semantic-release": "^17.4.4"
}
}