-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
94 lines (94 loc) · 2.31 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
{
"name": "lux-i18n",
"version": "3.1.0",
"description": "Make react-intl lux-aware, and capable of consuming translations from a lux store.",
"main": "src/index.js",
"scripts": {
"lint": "eslint --fix ./",
"cover": "nyc -r text-summary -r html -- npm run test:only",
"cover:show": "open \"file://$PWD/coverage/index.html\"",
"pretest": "npm run lint",
"test": "npm run cover",
"test:only": "NODE_ENV=test mocha 'src/**/*.spec.js'",
"test:watch": "npm run test:only -- -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeanKit-Labs/lux-i18n.git"
},
"author": "LeanKit",
"contributors": [
{
"name": "Jim Cowart",
"email": "[email protected]",
"url": "http://ifandelse.com"
},
{
"name": "Ryan Niemeyer",
"email": "[email protected]",
"url": "http://www.knockmeout.net"
}
],
"bugs": {
"url": "https://github.com/LeanKit-Labs/lux-i18n/issues"
},
"homepage": "https://github.com/LeanKit-Labs/lux-i18n#readme",
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015-without-strict": "0.0.4",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-enzyme": "^1.0.0-beta.0",
"dirty-chai": "^1.2.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint-config-leankit": "^5.1.0",
"jsdom": "^9.5.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"postal": "^2.0.0",
"proxyquire": "^1.7.10",
"react-dom": "^16.3.0",
"sinon": "^1.17.5",
"sinon-as-promised": "^4.0.2",
"sinon-chai": "^2.8.0"
},
"mocha": {
"require": [
"babel-register",
"spec/node-setup"
],
"reporter": [
"spec"
]
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*.spec.js"
],
"all": true,
"require": [
"babel-register"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {
"intl-messageformat": "^1.3.0",
"lodash": "^4.17.15",
"lux.js": "^2.0.0",
"react": "^16.3.0",
"react-intl": "^2.1.5"
}
}