-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 837 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 837 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
{
"name": "mobilization",
"version": "1.0.0",
"description": "A library written for Yandex School of Interface Development as second introductory assignment by Mikhail Kononenko.",
"main": "main.js",
"scripts": {
"watch": "watchify src/main.js -o dist/main.js -v",
"build": "browserify src/main.js -o dist/main.js",
"demo": "watchify demo.js -o demo.dist.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vbifonixor/second-task.git"
},
"author": "Mikhail Kononenko <i@vbifonix.ru>",
"license": "ISC",
"bugs": {
"url": "https://github.com/vbifonixor/second-task/issues"
},
"homepage": "https://github.com/vbifonixor/second-task#readme",
"dependencies": {
"moment": "^2.18.1"
},
"devDependencies": {
"browserify": "^14.1.0",
"watchify": "^3.9.0"
}
}