forked from twitter/twitter-text
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.4 KB
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
{
"name": "twitter-text",
"description": "official twitter text linkification",
"version": "2.0.5",
"main": "build/twitter-text.js",
"files": [
"build/twitter-text.js"
],
"homepage": "https://github.com/twitter/twitter-text",
"author": "Twitter Inc.",
"repository": {
"type": "git",
"url": "https://github.com/twitter/twitter-text.git"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"fs-extra": "^4.0.2",
"grunt": "^0.4.5",
"grunt-contrib-qunit": "~2.0.0",
"optimist": "^0.6.1",
"qunitjs": "^1.23.1",
"rollup": "^0.49.2",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-license": "^0.5.0",
"rollup-plugin-node-resolve": "^3.0.0",
"uglify-js": "~2.4.3"
},
"scripts": {
"build:config": "node scripts/buildConfig.js",
"build:prepare": "npm run build:config && rake test:conformance:prepare",
"build": "npm run build:config && rollup -c",
"build:watch": "npm run build -- -w",
"build:prod": "rollup -c rollup.config.js --prod",
"prepublish": "npm run build:config && npm run build:prod",
"test": "npm run build && rake test && rake test:conformance"
},
"dependencies": {
"punycode": "1.4.1"
}
}