-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·83 lines (83 loc) · 2.76 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
{
"name": "@just-js/just",
"title": "JustJs",
"version": "1.0.0-dev",
"description": "Essential utilities for all your javascript proyects.",
"main": "dist/server/index.js",
"browser": "dist/browser/core.min.js",
"homepage": "https://justjs.github.io",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "npm run dev",
"dev": "npm run test:dev",
"build": "NODE_ENV=production precise-watcher --config precise-watcher.config.js",
"test": "npm run test:unit -- --ci",
"test:unit": "npm run test:jest -- test/jest/unit",
"test:integration": "npm run test:jest -- test/jest/integration",
"test:e2e": "karma start",
"test:dev": "WATCHING=true npm run test -- --watch --coverage --coverageReporters=text",
"test:jest": "jest -c test/jest/config.js",
"test:coverage": "npm run test -- --coverage",
"test:coverage:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls",
"doc": "./bin/document",
"doc:deploy": "NODE_ENV=production ./bin/deploy",
"doc:test": "npm run test:e2e",
"doc:jsdoc": "jsdoc -c docs/jsdoc.config.js",
"doc:jsdoc:dev": "npm run doc:dev",
"doc:dev": "precise-watcher --config=precise-watcher.config.js",
"doc:check": "live-server docs/public",
"doc:minify": "npm run minify:html -- --input-dir docs/public --output-dir docs/public",
"minify:html": "html-minifier --file-ext html --collapse-whitespace --minify-css true --minify-js true",
"lint": "eslint",
"style": "npm run lint -- --fix",
"pretest": "npm run lint -- . --cache",
"precommit": "npm run test",
"prepack": "npm run build",
"release": "./bin/release"
},
"repository": {
"type": "git",
"url": "https://github.com/justjs/just.git"
},
"bugs": "https://github.com/justjs/just/issues",
"keywords": [
"javascript",
"library",
"just-js",
"helpers"
],
"files": [
"dist/**/*.js"
],
"author": {
"name": "Alexis Puga",
"email": "[email protected]",
"url": "https://github.com/AlexisPuga"
},
"license": "BSD-3-Clause",
"devDependencies": {
"@alexispuga/jsdoc-template": "^1.3.3",
"coveralls": "^3.1.1",
"eslint": "^8.32.0",
"eslint-config-justjs": "github:justjs/eslint-config-justjs#v0.1.0",
"eslint-plugin-es5": "^1.5.0",
"eslint-plugin-jest": "^27.2.1",
"gzip-size": "^7.0.0",
"html-minifier": "^4.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jsdoc": "^4.0.0",
"karma": "^6.3.17",
"karma-custom": "^1.1.9",
"karma-firefox-launcher": "^2.1.2",
"live-server": "^1.2.1",
"mock-xmlhttprequest": "^8.1.0",
"nunjucks-to-html": "^1.1.0",
"precise-watcher": "^2.1.0",
"requirejs": "^2.3.6",
"semver": "^7.3.5",
"uglify-js": "^3.17.4"
}
}