-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.27 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
{
"name": "string-to-html",
"version": "1.3.4",
"description": "A very simple browser script to parse html strings into document fragments",
"main": "dist/string-to-html.js",
"module": "dist/string-to-html.es2015.js",
"scripts": {
"build-test": "./node_modules/.bin/browserify test.js -o test-browserify.js -t [ babelify --presets [ es2015 ] ]",
"test": "npm run build && ./node_modules/.bin/mocha-phantomjs test.html",
"umd": "yarn rollup -- string-to-html.js --format=umd -o dist/string-to-html.js -n toHtml",
"es2015": "rollup string-to-html.js --format es --output dist/string-to-html.es2015.js",
"keeprolling": "yarn umd && yarn es2015",
"build": "yarn keeprolling && babel dist/string-to-html.es2015.js dist/string-to-html.js -d ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ricklancee/string-to-html.git"
},
"bugs": {
"url": "https://github.com/ricklancee/string-to-html/issues"
},
"author": "Rick Lancee",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.3.0",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"mocha-phantomjs": "^4.1.0",
"rollup": "^0.41.6",
"babel-preset-env": "^1.4.0"
}
}