This repository has been archived by the owner on Jul 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 3.04 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
67
68
69
70
71
72
73
74
{
"name": "@ristostevcev/bs-declaredom",
"version": "2.22.0",
"description": "Strongly typed declarative markup for the DOM and CSS",
"repository": {
"type": "git",
"url": "git://github.com/Risto-Stevcev/bs-declaredom.git"
},
"homepage": "https://github.com/Risto-Stevcev/bs-declaredom",
"bugs": "https://github.com/Risto-Stevcev/bs-declaredom/issues",
"sideEffects": false,
"scripts": {
"clean": "bsb -clean-world",
"build": "bsb -make-world",
"watch": "bsb -make-world -w",
"pretest": "bsb -make-world",
"bundle:webpack": "webpack",
"bundle:webpack:jsx": "webpack --config webpack.config.jsx.js",
"bundle:parcel": "parcel build lib/es6_global/example/Example.bs.js",
"bundle:rollup": "rollup lib/es6_global/example/Example.bs.js --file dist/bundle.rollup.js --output.name foo --format umd",
"bundle:rollup:simple": "rollup --config rollup.config.js",
"bundle": "yarn run bundle:webpack && yarn run bundle:webpack:jsx && yarn run bundle:parcel && yarn run bundle:rollup",
"uglify:simple": "uglifyjs dist/bundle.rollup.simple.js --toplevel -mc passes=40 -o dist/bundle.rollup.simple.min.js",
"simple": "yarn run bundle:rollup:simple && yarn run uglify:simple",
"test": "yarn run bundle && yarn run test:unit && yarn run test:tree-shaking",
"test:unit": "node lib/js/test/Test_All.bs.js | tap-spec",
"test:tree-shaking": "bats ./test-tree-shaking.bats | tap-spec",
"test:html": "node lib/js/test/Test_Html.bs.js | tap-spec",
"test:html:node": "node lib/js/test/html/Test_Html_Node.bs.js | tap-spec",
"test:css": "node lib/js/test/Test_Css.bs.js | tap-spec",
"test:css:media": "node lib/js/test/css/Test_Css_Media.bs.js | tap-spec",
"test:css:property": "node lib/js/test/css/Test_Css_Property.bs.js | tap-spec",
"test:css:selector": "node lib/js/test/css/Test_Css_Selector.bs.js | tap-spec",
"test:css:stylesheet": "node lib/js/test/css/Test_Css_Stylesheet.bs.js | tap-spec",
"graph:dot": "bs-dependency-graph | json-to-dot > graph.dot",
"graph:image": "dot -Tpng graph.dot -o graph.png",
"graph:view": "feh graph.png",
"graph": "yarn run graph:dot && yarn run graph:image",
"docs": "./docs.sh",
"example": "parcel example/example.html"
},
"keywords": [
"BuckleScript",
"reason"
],
"author": "Risto Stevcev",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "7.6.4",
"@babel/preset-env": "7.6.3",
"@ristostevcev/bs-odoc": "1.3.0",
"@ristostevcev/bs-tape": "0.2.0",
"babel-loader": "8.0.6",
"bats": "1.1.0",
"bs-dependency-graph": "2.1.0",
"bs-platform": "5.2.1",
"core-js": "3.3.6",
"esm": "3.2.25",
"json-to-dot": "1.1.0",
"parcel-bundler": "1.12.4",
"rollup": "1.26.3",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"tap-spec": "5.0.0",
"uglify-js": "3.6.7",
"webpack": "4.41.2",
"webpack-cli": "3.3.10"
},
"dependencies": {
"bs-webapi": "^0.15.4",
"jsdom": "^15.2.1"
}
}