-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.93 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "watpl",
"version": "0.1.0",
"description": "Create WebAssembly modules using template strings",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"files": [
"dist",
"lib",
"es",
"bin",
"src"
],
"scripts": {
"clean": "rimraf lib dist es bin",
"test": "cross-env BABEL_ENV=test NODE_ENV=test jest --coverage",
"test:watch": "npm test -- --watchAll",
"test:cov": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"check:src": "npm run lint && npm run flow && npm run test",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --ignore cli",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --ignore cli",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack --env.prod src/index.js dist/watpl.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack --env.prod src/index.js dist/watpl.min.js",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"prepublish": "npm run clean && npm run check:src && npm run build",
"lint": "eslint src test",
"flow": "flow check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbasso/watpl.git"
},
"keywords": [
"webassembly",
"wasm",
"react"
],
"author": "Matteo Basso (https://github.com/mbasso)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mbasso/watpl/issues"
},
"homepage": "https://github.com/mbasso/watpl",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-member-expression-literals": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/plugin-transform-property-literals": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/plugin-transform-spread": "^7.0.0",
"@babel/plugin-transform-strict-mode": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "23.6.0",
"babel-loader": "^8.0.0",
"babel-preset-minify": "^0.4.3",
"compression-webpack-plugin": "1.0.0",
"coveralls": "2.13.1",
"cross-env": "5.2.0",
"eslint": "5.4.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "3.0.1",
"eslint-plugin-flowtype": "2.50.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.11.1",
"flow-bin": "0.89.0",
"jest": "23.6.0",
"nyc": "10.3.0",
"prettier": "1.15.3",
"prettier-eslint": "8.8.2",
"rimraf": "2.6.3",
"webpack": "3.5.5"
},
"npmName": "watpl",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"browserify": {
"transform": [
"loose-envify"
]
},
"dependencies": {
"@babel/runtime": "7.3.4",
"wabt": "1.0.10"
}
}