-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.42 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
64
65
66
{
"name": "ponyFiction",
"version": "1.0.0",
"license": "GPLv3",
"author": "Andriy Kushnir (Orhideous)",
"description": "Library CMS for stories.everypony.ru",
"repository": {
"type": "git",
"url": "https://github.com/Orhideous/ponyFiction.git"
},
"bugs": {
"url": "https://github.com/Orhideous/ponyFiction/issues"
},
"dependencies": {
"react": "~0.13.3",
"jquery": "~2.1.4",
"bootstrap": "~3.3.5",
"classnames": "~2.1.3"
},
"devDependencies": {
"gulp": "~3.9.0",
"browserify": "~10.2.4",
"coffee-script": "~1.9.3",
"coffeeify": "~1.1.0",
"gulp-rename": "~1.2.2",
"gulp-stylus": "~2.0.3",
"gulp-uglify": "^1.2.0",
"gulp-util": "~3.0.5",
"event-stream": "~3.3.1",
"vinyl-buffer": "~1.0.0",
"vinyl-source-stream": "~1.1.0",
"del": "~1.2.0",
"glob": "~5.0.14",
"lodash": "~3.10.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"browserify": {
"transform": [
"coffeeify"
],
"extensions": [
".js",
".coffee"
]
},
"js": {
"entries": "./ponyFiction/frontend/js/*.coffee",
"watches": [
"./ponyFiction/frontend/js/**/*.coffee"
]
},
"css": {
"entries": [
"./ponyFiction/frontend/css/main.styl"
],
"watches": [
"./ponyFiction/frontend/css/**/*.styl"
],
"includes": [
"./node_modules"
]
},
"dist": "./static/dist"
}