forked from Dogstudio/highway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.43 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
{
"name": "@dogstudio/highway",
"license": "MIT",
"version": "1.3.3",
"description": "Highway helps you manage your page transitions",
"main": "dist/highway.js",
"unpkg": "dist/highway.min.js",
"files": [
"dist"
],
"contributors": [
{
"name": "Anthony Du Pont",
"email": "[email protected]",
"url": "https://twitter.com/Anthodpnt"
}
],
"scripts": {
"clean": "rm -rf dist/",
"build": "npm run clean && webpack",
"watch": "npm run clean && webpack --watch",
"test": "nyc --reporter=lcov mocha test/*.tests.js --require jsdom-global/register --require babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dogstudio/highway.git"
},
"keywords": [
"js",
"router",
"javascript",
"transitions",
"animations",
"library"
],
"bugs": {
"url": "https://github.com/Dogstudio/highway/issues"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"compression-webpack-plugin": "^1.1.11",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^11.7.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"sinon": "^4.5.0",
"uglifyjs-webpack-plugin": "^1.2.3",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
},
"dependencies": {
"tiny-emitter": "^2.0.2"
}
}