-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 3.36 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": "intl-relative-time-format",
"version": "1.0.7",
"description": "A fully spec-compliant polyfill for 'Intl.RelativeTimeFormat'",
"repository": {
"type": "git",
"url": "https://github.com/wessberg/intl-relative-time-format.git"
},
"bugs": {
"url": "https://github.com/wessberg/intl-relative-time-format/issues"
},
"scripts": {
"generate:readme": "scaffold readme --yes",
"generate:license": "scaffold license --yes",
"generate:contributing": "scaffold contributing --yes",
"generate:coc": "scaffold coc --yes",
"generate:changelog": "standard-changelog --first-release",
"generate:all": "npm run generate:license & npm run generate:contributing & npm run generate:coc & npm run generate:readme && npm run generate:changelog",
"clean:dist": "rm -rf dist",
"clean:compiled": "rm -rf compiled",
"clean": "npm run clean:dist && npm run clean:compiled",
"lint": "tsc --noEmit && tslint -c tslint.json --project tsconfig.json",
"prettier": "prettier --write '{src,test,documentation}/**/*.{js,ts,json,html,xml,css,md}'",
"test": "ava",
"test262": "node test262-runner.js",
"posttest": "npm run clean:compiled",
"prebuild": "npm run clean:dist",
"build": "npm run rollup",
"watch": "npm run rollup -- --watch",
"build_data": "cd scripts/build-data && tsc && node compiled/scripts/build-data/build-data.js && rm -rf compiled",
"rollup": "rollup -c rollup.config.js",
"preversion": "npm run lint && npm run build_data && NODE_ENV=production npm run build",
"version": "npm run generate:all && git add .",
"release": "np --no-cleanup --no-yarn"
},
"files": [
"dist/**/*.*",
"locale-data/**/*.*"
],
"keywords": [
"intl",
"RelativeTimeFormat",
"ecma-402",
"internationalization",
"i18n",
"time ago",
"polyfill",
"relative time",
"ECMAScript internationalization API"
],
"contributors": [
{
"name": "Frederik Wessberg",
"email": "[email protected]",
"url": "https://github.com/wessberg",
"imageUrl": "https://avatars2.githubusercontent.com/u/20454213?s=460&v=4",
"role": "Lead Developer",
"twitter": "FredWessberg"
}
],
"license": "MIT",
"devDependencies": {
"@types/find-up": "^2.1.1",
"@wessberg/rollup-plugin-ts": "1.1.59",
"@wessberg/browserslist-generator": "1.0.23",
"@wessberg/scaffold": "1.0.19",
"@wessberg/ts-config": "^0.0.41",
"babel-preset-minify": "0.5.0",
"ava": "^2.1.0",
"test262-harness": "^6.3.2",
"cldr": "^5.3.0",
"find-up": "^4.1.0",
"rollup": "^1.16.6",
"rollup-plugin-node-resolve": "^5.2.0",
"standard-changelog": "^2.0.11",
"javascript-stringify": "^2.0.0",
"tslib": "^1.10.0",
"tslint": "^5.18.0",
"typescript": "^3.5.2",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"husky": "^3.0.0",
"np": "^5.0.3",
"ts-node": "8.3.0",
"rollup-plugin-multi-entry": "2.1.0",
"full-icu": "1.3.0"
},
"dependencies": {},
"test262": "./test262-polyfill.js",
"minified": "./dist/index.min.js",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"browser": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"es2015": "./dist/index.esm.js",
"engines": {
"node": ">=4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"ava": {
"files": [
"test/*.test.ts"
],
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}