-
Notifications
You must be signed in to change notification settings - Fork 8
/
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": "@wowserhq/stormjs",
"version": "0.4.1",
"description": "StormLib for Javascript, powered by Emscripten",
"main": "dist/index",
"module": "dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "npm run build:stormlib && npm run build:cjs && npm run build:esm",
"build:stormlib": "node scripts/build-stormlib.js",
"build:cjs": "BABEL_ENV=cjs babel src/lib/ --out-dir dist/",
"build:esm": "BABEL_ENV=esm babel src/lib/ --out-dir dist/ --keep-file-extension",
"clean": "node scripts/clean.js",
"lint": "eslint . --ext js,mjs",
"prepublishOnly": "npm run lint && npm run clean && npm run build && npm run test",
"release": "standard-version",
"test": "jest"
},
"repository": "github:wowserhq/stormjs",
"keywords": [
"mpq",
"stormlib",
"wow",
"wowser"
],
"author": "Wowser Contributors",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "26.0.1",
"babel-plugin-module-resolver": "4.0.0",
"command-exists": "1.2.7",
"eslint": "4.19.1",
"eslint-config-wowser-base": "0.2.0",
"eslint-plugin-import": "2.13.0",
"fs-extra": "7.0.0",
"husky": "4.2.5",
"jest": "26.0.1",
"lint-staged": "10.2.6",
"standard-version": "8.0.0"
}
}