forked from phoenixframework/phoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 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
{
"name": "phoenix",
"version": "1.4.0",
"description": "The official JavaScript client for the Phoenix web framework.",
"license": "MIT",
"main": "./priv/static/phoenix.js",
"repository": {
"type": "git",
"url": "git://github.com/phoenixframework/phoenix.git"
},
"author": "Chris McCord <[email protected]> (http://www.phoenixframework.org)",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.0",
"documentation": "^9.0.0-alpha.0",
"expose-loader": "^0.7.5",
"growl": "~> 1.10.0",
"jsdom": "9.8.3",
"jsdom-global": "2.1.0",
"mocha": "^5.2.0",
"mock-socket": "^6.0.1",
"sinon": "^1.17.6",
"webpack": "^4.23.1",
"webpack-cli": "^3.3.2"
},
"sideEffects": false,
"scripts": {
"test": "mocha ./test/**/*.js --exit -r @babel/register -r jsdom-global/register",
"docs": "documentation build js/phoenix.js -f html -o ../doc/js",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch"
}
}