-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.6 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
{
"name": "@wowserhq/math",
"version": "0.2.2",
"description": "Math library for Wowser",
"author": "Wowser Contributors",
"repository": "github:wowserhq/math",
"license": "MIT",
"main": "dist/index",
"module": "dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore --ext=mjs,js .",
"clean": "rimraf ./dist",
"build": "npm run clean && npm run test && npm run build:cjs && npm run build:esm",
"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",
"coverage": "jest",
"release": "standard-version",
"test": "npm run lint && jest",
"prepublishOnly": "npm run build",
"doc": "jsdoc -c .jsdocrc -d doc",
"compat": "browserslist --coverage \"last 2 versions, not ie 1-11, not ie_mob > 0, not android > 0\""
},
"files": [
"README.md",
"dist"
],
"keywords": [
"wowser"
],
"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",
"@wowserhq/eslint-config": "0.3.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "26.0.1",
"babel-plugin-module-resolver": "4.0.0",
"eslint": "4.19.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "21.22.0",
"husky": "4.2.5",
"jest": "26.0.1",
"jsdoc": "3.6.4",
"lint-staged": "10.2.6",
"rimraf": "3.0.2",
"standard-version": "8.0.0"
}
}