-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
63 lines (63 loc) · 1.41 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "pilotjs",
"version": "2.17.0",
"devDependencies": {
"@types/jest": "23.3.13",
"amdclean": "^2.7.0",
"babel-jest": "^23.6.0",
"babel-plugin-transform-amd-to-commonjs": "1.2.0",
"babel-plugin-transform-string-literal-replace": "^1.0.2",
"eslint": "^5.16.0",
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-requirejs": "^1.0.0",
"grunt-contrib-uglify": "^1.0.0",
"grunt-qunit-istanbul": "^1.0.0",
"grunt-version": "*",
"jest": "^23.6.0",
"request": "^2.65.0"
},
"description": "Multifunction JavaScript router.",
"main": "Pilot.js",
"types": "Pilot.d.ts",
"scripts": {
"test": "jest --coverage && npm run lint",
"lint": "eslint src",
"build": "grunt build",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/rubaxa/Pilot.git"
},
"keywords": [
"Pilot",
"router",
"routing",
"route"
],
"author": "Konstantin Lebedev <[email protected]>",
"license": "MIT",
"include": [
"Pilot.js"
],
"jest": {
"testRegex": "\\.tests\\.js$",
"transform": {
"\\.js$": "babel-jest"
},
"transformIgnorePatterns": [],
"moduleFileExtensions": [
"js",
"json"
],
"coverageReporters": [
"html"
],
"coverageDirectory": "report",
"collectCoverageFrom": [
"src/*.js"
]
},
"dependencies": {}
}