forked from lphilips/formatjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.29 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": "formatjs-repo",
"version": "1.0.0",
"private": true,
"description": "This repository is the home of FormatJS and related libraries.",
"repository": {
"type": "git",
"url": "https://github.com/formatjs/formatjs"
},
"scripts": {
"build:bootstrap": "lerna bootstrap",
"build:packages": "lerna run clean && lerna run build",
"build": "npm run build:bootstrap && npm run prettier && npm run build:packages",
"cover:collect": "mkdir -p ./.nyc_output/ && for d in $(find packages -type d -name '.nyc_output' -maxdepth 2 -exec find '{}' -type f ';'); do (cp $d ./.nyc_output/); done; nyc report --reporter=lcov --report-dir=${COVERAGE_DIR:-artifacts/coverage}",
"cover": "lerna run cover --since",
"dev:lint": "lerna run lint --since master",
"dev:test": "lerna run test --since master",
"karma:ci": "karma start karma.conf-ci.js",
"karma:local": "karma start karma.conf.js",
"lint": "eslint .",
"postversion": "npm run prettier",
"prepublishOnly": "npm run build",
"prettier": "prettier --write packages/*/{test,tests,src}/**/*.ts packages/babel-plugin-react-intl/test/**/*.js {src,scripts,test,tests}/**/*.js **/*.md",
"prettier:check": "npm run prettier -- --check",
"test": "lerna run lint && npm run prettier:check && cross-env TS_NODE_PROJECT=tsconfig.cjs.json lerna run test"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/parser": "^7.4.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/types": "^7.4.4",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/babel__core": "^7.1.2",
"@types/benchmark": "^1.0.31",
"@types/chai": "^4.1.7",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.15",
"@types/mocha": "^5.2.7",
"babel-jest": "^24.8.0",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"coveralls": "^3.0.4",
"cross-env": "^5.2.0",
"eslint": "^6.0.0",
"eslint-plugin-react": "^7.12.4",
"fast-memoize": "^2.5.1",
"fs-extra": "^8.0.1",
"full-icu": "^1.3.0",
"glob": "^7.1.4",
"intl-pluralrules": "^1.0.3",
"jest": "^24.8.0",
"karma": "^4.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.0.0",
"karma-mocha": "^1.3.0",
"karma-sauce-launcher": "^2.0.2",
"lerna": "^3.15.0",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"moment": "^2.8.2",
"nyc": "^14.0.0",
"pegjs": "^0.10.0",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"rollup": "^1.15.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.22.0",
"rollup-plugin-uglify": "^6.0.2",
"source-map-support": "^0.5.12",
"test262-harness": "^6.3.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"ts-pegjs": "^0.2.5",
"tslib": "^1.10.0",
"typescript": "^3.4.5",
"xmldom": "^0.1.27"
},
"devEngines": {
"node": "8.x || 10.x || 12.x",
"npm": "6.x"
},
"pre-commit": [
"prettier",
"test"
],
"author": "Seth Bertalotto <[email protected]>",
"license": "BSD-3-Clause"
}