-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
42 lines (42 loc) · 991 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
{
"name": "actions-template",
"version": "1.0.0",
"description": "Learn how to use GitHub Actions!",
"main": "index.js",
"directories": {
"test": "__test__",
"src": "src"
},
"scripts": {
"build": "npx webpack --config ./src/webpack.config.js --mode production",
"dev": "npx webpack --config ./src/webpack.config.js --mode development --watch",
"test": "npx standard && npx jest"
},
"author": "githubtraining",
"license": "MIT",
"standard": {
"env": [
"jest",
"browser"
]
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.9.0",
"babel-jest": "^29.7.0",
"babel-loader": "^8.0.5",
"jest": "^27.5.1",
"standard": "^14.3.1",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"kind-of": "^6.0.3",
"node-forge": "^1.3.0"
},
"jest": {
"testRunner": "jest-jasmine2"
}
}