This repository has been archived by the owner on Aug 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
117 lines (117 loc) · 3.12 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "formatjs-site",
"version": "1.2.0",
"description": "Documentation for client/server internationalization in JavaScript.",
"private": true,
"main": "server.js",
"engines": {
"node": "6.x.x"
},
"scripts": {
"postinstall": "grunt",
"test": "istanbul cover --dir ./artifacts/test/coverage --post-require-hook ./tests/istanbul-hook -- _mocha tests/unit/ --require es6-shim --reporter spec",
"start": "node server.js",
"now-build": "grunt",
"now-start": "NODE_ENV=production node server.js"
},
"dependencies": {
"compression": "^1.0.11",
"dust-intl": "^1.1.0",
"dustjs-linkedin": "^2.4.0",
"errorhandler": "^1.1.1",
"es6-shim": "^0.27.1",
"express": "^4.9.5",
"express-handlebars": "^3.0.0",
"express-slash": "^2.0.1",
"express-state": "^1.2.0",
"glob": "^5.0.3",
"handlebars": "^4.0.11",
"handlebars-intl": "^1.1.1",
"intl": "^0.1.4",
"intl-locales-supported": "^1.0.0",
"jquery": "^3.3.1",
"js-yaml": "^3.2.1",
"jumanji": "^0.1.1",
"morgan": "^1.2.3",
"nodeify": "^1.0.0",
"path-to-regexp": "^1.2.0",
"promise": "^6.1.0",
"react": "^0.13.1",
"react-intl": "^1.2.0",
"react-tools": "^0.13.1",
"serve-favicon": "^2.1.1",
"serve-static": "^1.8.0"
},
"devDependencies": {
"autoprefixer-core": "^5.1.7",
"broccoli": "^1.1.4",
"broccoli-concat": "^3.7.1",
"broccoli-es6-module-transpiler": "^0.5.0",
"broccoli-filter": "^0.1.7",
"broccoli-funnel": "^2.0.1",
"broccoli-merge-trees": "^0.2.0",
"broccoli-react": "^0.7.1",
"broccoli-sane-watcher": "^1.1.5",
"broccoli-unwatched-tree": "^0.1.1",
"chai": "^4.1.2",
"chai-as-promised": "^4.3.0",
"grunt": "^1.0.3",
"grunt-broccoli-build": "^0.6.0",
"grunt-cli": "^1.3.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-curl": "^2.1.0",
"grunt-shell-spawn": "^0.3.1",
"istanbul": "^0.4.5",
"minimatch": "^3.0.4",
"mocha": "^5.2.0",
"now-travis": "^1.0.0",
"object.assign": "^1.0.1",
"postcss": "^4.0.6",
"postcss-custom-properties": "^3.0.1",
"rimraf": "^2.2.8",
"supertest": "^3.1.0",
"xunit-file": "0.0.6"
},
"repository": {
"type": "git",
"url": "https://github.com/yahoo/formatjs-site.git"
},
"author": "Eric Ferraiuolo <edf@ericf.me>",
"contributors": [
"Tilo Mitra <tilomitra@gmail.com>",
"Juan Dopazo <jdopazo@yahoo-inc.com>",
"Clarence Leung <clarle@yahoo-inc.com>",
"Jason Mitchell <jasonmit@yahoo-inc.com>",
"Julien Lecomte <julien.lecomte@gmail.com>"
],
"license": "BSD",
"bugs": {
"url": "https://github.com/yahoo/formatjs-site/issues"
},
"homepage": "https://formatjs.io/",
"jshintConfig": {
"node": true,
"browser": true,
"esnext": true,
"predef": [
"DustIntl",
"dust"
],
"excludes": [
"examples/",
"build/",
"tmp/",
"tests/functional/includes/"
]
},
"yahoo": {
"bugzilla": {
"product": "yui utilities",
"component": "Intl"
},
"custodian": {
"email": "jlecomte@yahoo-inc.com",
"url": "https://formatjs.io"
}
}
}