-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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": "@becklyn/router",
"description": "The JS implementation of Symfony's Router.",
"author": "Becklyn Studios <[email protected]>",
"homepage": "https://github.com/Becklyn/javascript-router",
"repository": {
"type": "git",
"url": "git://github.com/Becklyn/javascript-router.git"
},
"version": "1.0.3",
"main": "src/index.js",
"module": "src/index.js",
"scripts": {
"build": "node_modules/.bin/tsc --noEmitOnError --noErrorTruncation --listEmittedFiles --pretty --noUnusedLocals",
"dev": "node_modules/.bin/tsc --noEmitOnError --noErrorTruncation --listEmittedFiles --pretty -w",
"prepublishOnly": "npm run-script build",
"test": "npm run-script build && ava"
},
"dependencies": {
"qss": "^2.0.3"
},
"devDependencies": {
"ava": "^2.4.0",
"esm": "^3.2.25",
"typescript": "^3.5.3"
},
"ava": {
"files": [
"tests/*",
"!tests/helpers/*"
],
"require": [
"esm"
]
},
"type": "library"
}