-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "circleci-tutorial-for-beginners",
"version": "0.1.0",
"description": "Tutorial for CircleCI®",
"author": "Ryan Kienstra",
"license": "GPL-2.0-or-later",
"keywords": [
"javascript",
"CI/CD"
],
"homepage": "https://github.com/getlocalci/circleci-tutorial-for-beginners#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/getlocalci/circleci-tutorial-for-beginners.git"
},
"bugs": {
"url": "https://github.com/getlocalci/circleci-tutorial-for-beginners/issues"
},
"engines": {
"node": "14"
},
"main": "src/multiply.js",
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.16.7",
"@wordpress/e2e-test-utils": "^5.4.10",
"@wordpress/env": "^4.1.3",
"@wordpress/jest-console": "^4.1.1",
"@wordpress/scripts": "^19.2.2",
"@wordpress/url": "^3.3.1",
"eslint": "^7.32.0",
"jest": "^27.4.7",
"pptr-testing-library": "^0.7.0",
"prettier": "^2.5.1",
"puppeteer": "^13.1.1",
"typescript": "^4.5.5"
},
"scripts": {
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint:js": "wp-scripts lint-js src",
"lint:js:fix": "npm run lint:js -- --fix",
"test:js": "jest",
"test:e2e": "wp-scripts test-e2e --config=tests/e2e/jest.config.js",
"wp-env": "wp-env"
}
}