-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.1 KB
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": "render-script",
"version": "1.2.280",
"main": "./src/index.mjs",
"type": "module",
"author": {
"name": "Renderapp",
"email": "contact@renderapp.co",
"url": "http://renderapp.co"
},
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sequencemedia/render-script.git"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky",
"test": "cross-env NODE_ENV=test mocha test --recursive --verbose --color"
},
"dependencies": {
"debug": "^4.4.3"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@sequencemedia/eslint-config-standard": "^0.2.107",
"chai": "^6.2.2",
"core-js": "^3.48.0",
"cross-env": "^10.1.0",
"eslint": "9.38.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"mocha": "^11.7.5"
},
"exports": {
".": {
"import": "./src/index.mjs",
"require": "./src/index.cjs"
},
"./evaluate": {
"import": "./src/evaluate.mjs",
"require": "./src/evaluate.cjs"
}
}
}