-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 943 Bytes
/
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
{
"name": "react-g11n",
"version": "0.2.2",
"description": "Globalization for react components using gettext",
"main": "./lib/index.js",
"files": [
"README.md",
"LICENSE",
"lib"
],
"scripts": {
"start": "babel src --out-dir lib",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/darrenlucas/react-g11n.git"
},
"author": "Darren Lucas",
"license": "ISC",
"bugs": {
"url": "https://github.com/darrenlucas/react-g11n/issues"
},
"homepage": "https://github.com/darrenlucas/react-g11n#readme",
"dependencies": {
"gettext-parser": "^1.2.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-jest": "^18.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"jest": "^18.1.0",
"react": "^15.4.2",
"react-test-renderer": "^15.4.2"
},
"jest": {
"testPathDirs": [
"./test"
]
}
}