-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
{
"name": "@moikaturns/import-pob-code",
"version": "1.0.0",
"description": "Import plain old browser code for testing",
"main": "./lib/index.js",
"files": [
"/lib"
],
"scripts": {
"clean": "rimraf lib",
"pretty": "prettier --list-different {test,src}/**/*.js",
"prettyFix": "prettier --write {test,src}/**/*.js",
"lint": "eslint",
"lintFix": "eslint --fix",
"static": "npm run pretty && npm run lint",
"staticFix": "npm run prettyFix && npm run lintFix",
"test": "mocha test/*.{js,mjs}",
"testDebug": "node node_modules/mocha/bin/mocha.js --inspect-brk",
"build": "NODE_ENV=production babel src --out-dir lib",
"prepublish": "npm run clean && npm run static && npm run test && npm run build"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moikaturns/import-pob-code.git"
},
"keywords": [
"plain-old-javascript",
"non-module",
"module-less",
"browser-script",
"browser-script"
],
"author": "moikaturns",
"license": "ISC",
"bugs": {
"url": "https://github.com/moikaturns/import-pob-code/issues"
},
"homepage": "https://github.com/moikaturns/import-pob-code#readme",
"devDependencies": {
"@eslint/js": "^9.10.0",
"babel-cli": "^6.26.0",
"chai": "^5.1.1",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"rimraf": "^6.0.1"
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jsdom": "^25.0.0"
}
}