forked from tighten/ziggy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.73 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.73 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "ziggy-js",
"version": "0.9.1",
"description": "Generates a Blade directive exporting all of your named Laravel routes. Also provides a nice route() helper function in JavaScript.",
"keywords": ["laravel", "routes", "ziggy"],
"module": "src/js/route.js",
"main": "dist/js/route.js",
"browser": "dist/js/route.min.js",
"files": [
"src/js",
"dist"
],
"directories": {
"test": "tests/js"
},
"repository": {
"type": "git",
"url": "https://github.com/tighten/ziggy.git"
},
"authors": [
{
"name": "Daniel Coulbourne",
"email": "daniel@tighten.co"
},
{
"name": "Jake Bathman",
"email": "jake@tighten.co"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tighten/ziggy/issues"
},
"homepage": "https://github.com/tighten/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",
"prepublishOnly": "npm run build"
},
"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",
"unminified-webpack-plugin": "^2.0.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7"
},
"dependencies": {
"qs": "^6.8.0"
},
"engines": {
"node": ">= 8.9"
}
}