-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1004 Bytes
/
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": "@symfony-javascript/router",
"version": "0.1.3",
"description": "Font-end router for Symfony",
"main": "dist/index.js",
"author": {
"email": "[email protected]",
"name": "Enzo Innocenzi",
"url": "https://innocenzi.dev"
},
"scripts": {
"clean": "rm -rf dist",
"build": "yarn run clean && tsc",
"test": "jest test",
"watch": "jest test --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/symfony-javascript/router.git"
},
"keywords": ["symfony", "javascript", "routing"],
"license": "MIT",
"bugs": {
"url": "https://github.com/symfony-javascript/router/issues"
},
"homepage": "https://github.com/symfony-javascript/router#readme",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-typescript": "^7.6.0",
"@types/jest": "^24.0.18",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
}
}