-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
53 lines (53 loc) · 1.52 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
{
"name": "textile-js",
"description": "A full-featured JavaScript Textile parser",
"author": "Borgar Þorsteinsson <[email protected]>",
"version": "2.1.1",
"scripts": {
"build": "webpack --mode production",
"start": "webpack --mode development --watch",
"dev": "nodemon -w test -w src -x 'tape 'test/*.js'|tap-min'",
"test": "tape test/*js | tap-min",
"lint": "eslint src/*js test/*js",
"coverage": "nyc --reporter html --reporter text tape test/*js",
"pub": "node scripts/publish.js",
"dingus": "node scripts/updatedingus.js"
},
"main": "./lib/textile.js",
"bin": "./bin/textile",
"preferGlobal": false,
"repository": "git://github.com/borgar/textile-js.git",
"homepage": "https://github.com/borgar/textile-js",
"bugs": {
"url": "http://github.com/borgar/textile-js/issues"
},
"keywords": [
"textile",
"markup",
"html"
],
"tags": [
"textile",
"markup",
"html"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "~7.8.4",
"@babel/plugin-proposal-class-properties": "~7.8.3",
"@babel/plugin-proposal-export-default-from": "~7.8.3",
"@babel/polyfill": "~7.8.3",
"@babel/preset-env": "~7.8.4",
"@babel/register": "~7.8.3",
"@borgar/eslint-config": "~1.1.0",
"babel-loader": "~8.0.6",
"eslint": "~6.8.0",
"eslint-plugin-import": "~2.20.1",
"nyc": "~15.0.0",
"tape": "~4.13.0",
"tap-min": "~2.0.0",
"terser-webpack-plugin": "~2.3.6",
"webpack": "~4.41.5",
"webpack-cli": "~3.3.12"
}
}