-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "@adobe/reactor-token-scripts-edge",
"version": "1.2.0",
"description": "Node binary used in transforming the edge container to valid JS.",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"lint": "eslint 'src/**'",
"debug:findTokens": "node cli.js findTokens --filePath ./test/fixtures/findTokens/container.js --onlyUndefined",
"debug:sanitize": "node cli.js sanitize --filePath ./test/fixtures/sanitize/container.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "[email protected]:adobe/reactor-token-scripts-edge.git"
},
"author": {
"name": "Adobe Systems",
"url": "http://adobe.com",
"email": "[email protected]"
},
"license": "Apache-2.0",
"lint-staged": {
"*.js": [
"eslint --cache --fix"
]
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.7",
"jest": "^29.7.0",
"jest-runner-eslint": "^2.1.2",
"lint-staged": "^15.2.1",
"prettier": "^3.2.4",
"pretty-quick": "^4.0.0"
},
"dependencies": {
"@babel/core": "^7.23.9",
"yargs": "^17.7.2"
},
"bin": "cli.js"
}