-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathpackage.json
90 lines (90 loc) · 2.35 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "asm-dom",
"version": "0.7.0",
"description": "A minimal WebAssembly virtual DOM to build C++ SPA (Single page applications)",
"main": "lib/js/index.js",
"jsnext:main": "es/js/index.js",
"files": [
"dist",
"lib",
"es",
"src",
"cpp",
"compiled"
],
"scripts": {
"lint": "eslint src test build",
"prepublish": "make clean && make && make lint && make test_js",
"test:js": "cross-env BABEL_ENV=commonjs nyc --require babel-register mocha --recursive",
"test:cov": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbasso/asm-dom.git"
},
"keywords": [
"webassembly",
"wasm",
"asmjs",
"asm",
"virtualdom",
"dom"
],
"author": "Matteo Basso (https://github.com/mbasso)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mbasso/asm-dom/issues"
},
"homepage": "https://mbasso.github.io/asm-dom",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.2",
"babel-loader": "6.4.1",
"babel-plugin-dynamic-import-webpack": "1.0.1",
"babel-plugin-macros": "2.0.0",
"babel-plugin-preval": "1.6.2",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-plugin-transform-es3-member-expression-literals": "6.22.0",
"babel-plugin-transform-es3-property-literals": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.24.1",
"brotli-webpack-plugin": "0.5.0",
"compression-webpack-plugin": "0.4.0",
"coveralls": "2.13.0",
"cross-env": "4.0.0",
"document-register-element": "1.7.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.3",
"expect": "1.20.2",
"istanbul": "0.4.5",
"jsdom": "11.5.1",
"knuth-shuffle": "1.0.1",
"mkdirp": "0.5.1",
"mocha": "6.1.4",
"ncp": "2.0.0",
"nyc": "11.0.2",
"rimraf": "2.6.1",
"webpack": "2.4.1"
},
"npmName": "asm-dom",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js",
"*.wasm"
]
}
],
"browserify": {
"transform": [
"loose-envify"
]
}
}