-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "upload-custom-code-action",
"version": "1.0.0",
"description": "A Github Action that enables Optimizely customers to upload custom JS / CSS to their projects",
"main": "src/index.js",
"scripts": {
"build": "ncc build src/index.js",
"pretest": "eslint --ignore-path .gitignore .",
"test": "mocha src/test_setup.js '*/tests.js' '*/*/tests.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/optimizely/upload-custom-code-action.git"
},
"keywords": [],
"author": "Optimizely",
"bugs": {
"url": "https://github.com/optimizely/upload-custom-code-action/issues"
},
"homepage": "https://github.com/optimizely/upload-custom-code-action#readme",
"dependencies": {
"@actions/core": "^1.2.4",
"isomorphic-fetch": "^3.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.25.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.13.0",
"eslint-config-google": "^0.14.0",
"fetch-mock": "^9.10.7",
"mocha": "^8.2.1",
"sinon": "^9.2.1",
"sinon-chai": "^3.5.0"
}
}