forked from andyearnshaw/Intl.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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
{
"name": "intl",
"version": "1.0.0-rc-1",
"description": "Polyfill the ECMA-402 Intl API (except collation)",
"main": "index.js",
"jsnext:main": "src/main.js",
"directories": {
"test": "tests"
},
"devDependencies": {
"async": "^0.9.0",
"glob": "^5.0.3",
"grunt": "^0.4.5",
"grunt-bundle-jsnext-lib": "^0.2.1",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-concat": "^0.5.0",
"grunt-contrib-copy": "^0.5.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-uglify": "^0.5.1",
"grunt-curl": "^2.1.0",
"grunt-extract-cldr-data": "^2.1.1",
"grunt-zip": "^0.16.2",
"jshint": "^2.5.5",
"object.assign": "^1.1.1",
"wd": "^0.3.6"
},
"scripts": {
"pretest": "grunt jshint",
"test": "cd tests && node noderunner.js && node saucelabs.js"
},
"repository": {
"type": "git",
"url": "https://github.com/andyearnshaw/Intl.js"
},
"keywords": [
"intl",
"i18n",
"internationalization",
"ecma402",
"polyfill"
],
"author": "Andy Earnshaw",
"email": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/andyearnshaw/Intl.js/issues"
}
}