This repository was archived by the owner on Jun 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.63 KB
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": "exist-utils",
"version": "1.0.5",
"description": "Utility functions that emulate CoffeeScript existence operator",
"author": "Louis Brunner <louis.brunner.fr@gmail.com> (https://github.com/LouisBrunner)",
"license": "MIT",
"keywords": [
"coffee",
"coffeescript",
"coffee-script",
"existence",
"exist",
"?",
"elvis",
"utils"
],
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf /*.js",
"build:lib": "babel src/*.js --out-dir .",
"build:dist": "webpack --mode production",
"build": "npm run build:lib && npm run build:dist",
"lint": "eslint .",
"test": "jest --config jest.config.js",
"test:watch": "npm run test -- --watch",
"test:ci": "CI=yes npm run test",
"prepush": "npm run lint && npm run test && npm run build:dist",
"prepare": "npm run clean && npm run lint && npm run test && npm run build:lib"
},
"repository": {
"type": "git",
"url": "https://github.com/LouisBrunner/exist-utils"
},
"bugs": {
"url": "https://github.com/LouisBrunner/exist-utils/issues"
},
"homepage": "https://github.com/LouisBrunner/exist-utils",
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"babel-loader": "^8.1.0",
"bufferutil": "^4.0.1",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.2",
"jest": "^29.0.1",
"node-notifier": "^10.0.1",
"utf-8-validate": "^5.0.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^4.2.2"
}
}