-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.43 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
{
"name": "@activitree/twitter-text",
"description": "Update of the official twitter text linkification",
"version": "4.0.0",
"main": "dist/index.js",
"module": "dist/esm",
"files": [
"dist"
],
"homepage": "https://github.com/twitter/twitter-text",
"author": "Twitter Inc.",
"repository": {
"type": "git",
"url": "https://github.com/twitter/twitter-text.git"
},
"scripts": {
"build:config": "node scripts/buildConfig.js",
"build:prepare": "npm run build:config && rake test:conformance:prepare",
"build": "rimraf dist && rollup -c",
"build:watch": "npm run build -- -w",
"build:prod": "npm run lint:check && rimraf dist && NODE_ENV=production babel src --out-dir dist/esm && NODE_ENV=production BABEL_ENV=commonjs babel src --out-dir dist",
"lint:check": "eslint src rollup.config.js scripts",
"lint": "npm run lint:check -- --fix",
"prepublishOnly": "npm run build:prod",
"test": "npm run build:prepare && npm run build && rake test && rake test:conformance"
},
"dependencies": {
"@babel/runtime": "^7.24.5",
"core-js": "^3.37.0",
"punycode": "2.3.1",
"twemoji-parser": "^14.0.0"
},
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.24.1",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-flow-strip-types": "^7.24.1",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/plugin-transform-spread": "^7.24.1",
"@babel/preset-env": "^7.24.5",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"babel-eslint": "^9.0.0",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^11.2.0",
"grunt": "^1.6.1",
"grunt-contrib-qunit": "~8.0.1",
"optimist": "^0.6.1",
"prettier": "^2.8.8",
"qunitjs": "^2.4.1",
"rimraf": "^5.0.7",
"rollup": "^4.17.2",
"rollup-plugin-license": "^3.3.1",
"uglify-js": "^3.17.4"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}