-
Notifications
You must be signed in to change notification settings - Fork 2.9k
/
package.json
37 lines (37 loc) · 1.07 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
{
"name": "phoenix",
"version": "1.7.14",
"description": "The official JavaScript client for the Phoenix web framework.",
"license": "MIT",
"main": "./assets/js/phoenix/index.js",
"module": "./assets/js/phoenix/index.js",
"repository": {
"type": "git",
"url": "git://github.com/phoenixframework/phoenix.git"
},
"exports": {
".": "./js/phoenix/index.js",
"./": "./js/phoenix/"
},
"author": "Chris McCord <[email protected]> (https://www.phoenixframework.org)",
"devDependencies": {
"@babel/cli": "7.24.5",
"@babel/core": "7.24.5",
"@babel/preset-env": "7.24.5",
"documentation": "^14.0.3",
"eslint": "8.56.0",
"eslint-plugin-jest": "^28.5.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-jsdom-global": "^4.0.0",
"jsdom": "^24.0.0",
"mock-socket": "^9.3.1"
},
"sideEffects": false,
"scripts": {
"test": "jest",
"test.coverage": "jest --coverage",
"test.watch": "jest --watch",
"docs": "documentation build js/phoenix/index.js -f html -o ../doc/js"
}
}