-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.66 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
{
"name": "magic-class",
"version": "1.1.0",
"description": "Activate PHP-like magic methods in Javascript classes and instances.",
"main": "dist/index.js",
"exports": {
".": {
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "babel ./src -d ./dist -D --delete-dir-on-start",
"test": "nyc mocha ./tests --require @babel/register",
"test:report": "nyc report --reporter=text-lcov",
"test:publish": "npm run test:report | coveralls",
"ci": "npm i && npm run build && npm test",
"cia": "npm run ci && npm run test:publish",
"cd": "npm run ci && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/linhntaim/magic-class.git"
},
"keywords": [
"php",
"php-like",
"magic",
"method",
"methods",
"class",
"static",
"instance"
],
"author": "Nguyen Tuan Linh <contact@linhntaim.com> (https://www.linhntaim.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/linhntaim/magic-class/issues"
},
"homepage": "https://github.com/linhntaim/magic-class#readme",
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/register": "^7.22.15",
"babel-plugin-add-module-exports": "^1.0.4",
"chai": "^4.3.10",
"coveralls-next": "^4.2.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
},
"engines": {
"node": ">=6"
}
}