-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
60 lines (60 loc) · 1.83 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
{
"name": "embeds",
"version": "2.11.6",
"description": "Parse & render embeds",
"main": "dist/index.js",
"scripts": {
"lint": "semistandard | snazzy",
"test:node": "nyc babel-tape-runner test/*-test.js",
"test:browser": "browserify -t babelify -t brfs -d test/*-test.js | devtool -c -h --bf --no-nt | faucet",
"test": "npm run test:node && npm run test:browser && npm run lint",
"build": "rm -rf dist && mkdir -p dist && babel lib --out-dir dist",
"watch": "rm -rf dist && mkdir -p dist && babel lib --out-dir dist --watch",
"prepublish": "npm run build",
"open-coverage": "npm run test:unit && nyc report --reporter=lcov && open coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micnews/embeds.git"
},
"keywords": [
"embeds"
],
"author": "mic.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/micnews/embeds/issues"
},
"homepage": "https://github.com/micnews/embeds#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-plugin-transform-react-jsx": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-tape-runner": "^2.0.1",
"babelify": "^7.2.0",
"brfs": "^1.4.3",
"browserify": "^14.4.0",
"devtool": "^2.3.1",
"faucet": "0.0.1",
"hyperscript": "^1.4.7",
"nyc": "^10.3.2",
"query-dom": "^3.0.7",
"semistandard-deku": "micnews/semistandard#deku",
"snazzy": "^5.0.0",
"tape-catch": "^1.0.6",
"tsml": "^1.0.1"
},
"dependencies": {
"deku": "^1.0.0",
"embedly-url": "^1.0.0",
"get-youtube-id": "^1.0.0",
"lodash.find": "^4.2.0",
"lodash.foreach": "^4.2.0",
"lodash.last": "^3.0.0",
"lodash.map": "^4.2.1",
"lodash.startswith": "^4.0.0",
"lodash.values": "^4.1.0",
"virtual-element": "^1.2.0"
}
}