forked from tighten/ziggy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.34 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
{
"name": "ziggy",
"version": "0.5.0",
"description": "Generates a Blade directive exporting all of your named Laravel routes. Also provides a nice route() helper function in JavaScript.",
"main": "src/js/route.js",
"directories": {
"test": "tests/js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tightenco/ziggy.git"
},
"author": "Daniel Coulbourne",
"license": "MIT",
"bugs": {
"url": "https://github.com/tightenco/ziggy/issues"
},
"homepage": "https://github.com/tightenco/ziggy#readme",
"scripts": {
"build": "NODE_ENV=production webpack --progress",
"build:watch": "npm run build -- --watch",
"test": "NODE_ENV=test mocha-webpack 'tests/js/**/*.js'",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"axios": "^0.19.0",
"babel-loader": "^8.0.6",
"mocha": "^6.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"moxios": "^0.4.0",
"qs": "^6.8.0",
"unminified-webpack-plugin": "^2.0.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7"
},
"dependencies": {},
"engines": {
"node": ">= 8.9"
}
}