-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 790 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 790 Bytes
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
{
"name": "myro",
"version": "0.6.2",
"description": "universal bidirectional microrouter",
"author": "Stefan Oestreicher <oestef@gmail.com>",
"main": "lib/myro.js",
"license": "BSD-3-Clause",
"scripts": {
"test": "./node_modules/.bin/karma start --single-run",
"prepublish": "webpack -p"
},
"repository": {
"type": "git",
"url": "https://github.com/steos/myro.git"
},
"dependencies": {
"lodash": "^4.6.1"
},
"devDependencies": {
"babel-core": "^6.6.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"jasmine-core": "^2.3.4",
"karma": "^0.13.21",
"karma-jasmine": "^0.3.7",
"karma-phantomjs-launcher": "^0.2.0",
"karma-webpack": "^1.7.0",
"phantomjs": "^1.9.17",
"webpack": "^1.12.14"
}
}