forked from twitter/twitter-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.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
{
"name": "@togetter/twitter-text",
"description": "official twitter text linkification",
"version": "3.1.0-1",
"license": "Apache-2.0",
"main": "dist/twitter-text.cjs.js",
"module": "dist/twitter-text.esm.js",
"types": "index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"homepage": "https://github.com/togetter/twitter-text",
"author": "Twitter Inc.",
"repository": {
"type": "git",
"url": "https://github.com/togetter/twitter-text.git"
},
"sideEffects": false,
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-flow-strip-types": "^7.14.5",
"@babel/plugin-transform-spread": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@types/twitter-text": "^3.1.0",
"babel-eslint": "^10.0.1",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^4.18.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"fs-extra": "^4.0.2",
"grunt": "^0.4.5",
"grunt-contrib-qunit": "~2.0.0",
"optimist": "^0.6.1",
"prettier": "^1.10.2",
"qunitjs": "^1.23.1",
"rimraf": "^2.6.2",
"rollup": "^2.51.2",
"rollup-plugin-license": "^2.5.0",
"uglify-js": "~2.4.3"
},
"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",
"test": "npm run build:prepare && npm run build && rake test && rake test:conformance"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"punycode": "1.4.1",
"twemoji-parser": "^11.0.2"
}
}