-
Notifications
You must be signed in to change notification settings - Fork 2.9k
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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": "phoenix",
"version": "1.8.0-dev",
"description": "The official JavaScript client for the Phoenix web framework.",
"license": "MIT",
"module": "./priv/static/phoenix.mjs",
"main": "./priv/static/phoenix.cjs.js",
"unpkg": "./priv/static/phoenix.min.js",
"jsdelivr": "./priv/static/phoenix.min.js",
"exports": {
"import": "./priv/static/phoenix.mjs",
"require": "./priv/static/phoenix.cjs.js"
},
"repository": {
"type": "git",
"url": "git://github.com/phoenixframework/phoenix.git"
},
"author": "Chris McCord <[email protected]> (https://www.phoenixframework.org)",
"files": [
"README.md",
"LICENSE.md",
"package.json",
"priv/static/*",
"assets/js/phoenix/*"
],
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@eslint/js": "^9.18.0",
"@stylistic/eslint-plugin-js": "^2.12.1",
"documentation": "^14.0.3",
"eslint": "9.18.0",
"eslint-plugin-jest": "28.10.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-jsdom-global": "^4.0.0",
"jsdom": "^26.0.0",
"mock-socket": "^9.3.1"
},
"scripts": {
"test": "jest",
"test.coverage": "jest --coverage",
"test.watch": "jest --watch",
"docs": "documentation build assets/js/phoenix/index.js -f html -o doc/js"
}
}