-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "alleycat",
"version": "1.0.1",
"description": "A work in progress router.",
"main": "./dist/alleycat.js",
"scripts": {
"test": "jest --watchAll --coverage",
"build": "rm -rf ./dist && webpack -p --config ./webpack.config.js"
},
"author": "John Long nakaroka@gmail.com",
"license": "MIT",
"homepage": "https://github.com/iamjohnlong/alleycat",
"repository": {
"type": "git",
"url": "https://github.com/iamjohnlong/alleycat.git"
},
"jest": {
"testURL": "http://needlepoint.com/",
"setupFiles": [
"<rootDir>/test/setup.js"
]
},
"dependencies": {
"url-pattern": "^1.0.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.2",
"compression-webpack-plugin": "^1.0.1",
"jasmine": "^2.8.0",
"jest": "^21.2.1",
"karma": "^1.7.1",
"karma-babel-preprocessor": "^7.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.4",
"karma-webpack": "^2.0.4",
"mocha": "^4.0.1",
"webpack": "^3.6.0"
}
}