-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.94 KB
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
{
"name": "enough-records",
"description": "a record label site",
"version": "0.0.2",
"license": "MIT",
"dependencies": {
"backbone": "~1.0.0",
"brfs": "^1.6.1",
"bulk-require": "^0.2.1",
"bulkify": "^1.4.2",
"envify": "^1.2.0",
"frontmatterify": "^1.0.0",
"htmlclean": "^2.7.10",
"json-front-matter": "^0.1.6",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"play-audio": "git+https://github.com/azer/play-audio.git#f2b0815bc2eba41dc981494ab94633eb66753bc1",
"react": "^0.14.0",
"react-infinite-scroll": "^0.1.5",
"react-router": "0.5.3",
"react-tools": "^0.10.0",
"reactify": "^0.13.1",
"reading-time": "0.0.1",
"slugify": "^0.1.1",
"uglify-js": "^2.8.29",
"underscore": "~1.12.1",
"underscore.string": "~3.3.5"
},
"devDependencies": {
"browserify": "~8.1.1",
"htmlparser2": "^3.10.1",
"statics": "~0.1.0",
"uglifyjs": "^2.4.10",
"watchify": "^2.2.1"
},
"main": "js/index.js",
"author": "Dan Peddle <dan@flarework.com>",
"contributors": [
"ps <psenough@gmail.com>",
"Dan Peddle <dan@flarework.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/enoughrec/arecordlabel.git"
},
"directories": {
"build": "build"
},
"scripts": {
"start": "STATIC_ROOT=./static watchify -o build/build.js -v -d .",
"build-gzip": "STATIC_ROOT=./static NODE_ENV=production browserify . | uglifyjs -cm | gzip -9 - > build/build.js.gz ",
"build": "STATIC_ROOT=./static NODE_ENV=production browserify . > build/build.js",
"build-ugly": "STATIC_ROOT=./static NODE_ENV=production browserify . | uglifyjs -cm > build/build.js",
"test": "echo \"Error: no test specified\" && exit 1",
"get-data": "curl -o ./data/all.json -X GET 'http://enoughrecords.scene.org/getlist4.php?archive=true'"
},
"browserify": {
"transform": [
"reactify",
"frontmatterify",
"envify",
"bulkify"
]
}
}