-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.86 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
{
"name": "adonis-shopping-cart",
"version": "1.0.5",
"description": "Adonis Shopping Cart",
"main": "./build/providers/CartProvider.js",
"files": [
"build/providers",
"build/templates",
"build/src",
"build/adonis-typings"
],
"scripts": {
"lint": "eslint . --ext=.ts --fix",
"pretest": "npm run lint",
"test": "node japaFile.js",
"clean": "rm -rf build",
"compile": "npm run lint && npm run clean && tsc && npm run copy:files",
"copy:files": "copyfiles \"adonis-typings/*\" \"templates/*.txt\" \"package.json\" \"README.md\" build",
"build": "npm run compile",
"prepublishOnly": "npm run build"
},
"typings": "./build/adonis-typings/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/alexpechkarev/adonis-shopping-cart.git"
},
"keywords": [
"adonisjs",
"adonis-shopping-cart",
"adonis-shopping-basket"
],
"author": "Alexander Pechkarev",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexpechkarev/adonis-shopping-cart/issues"
},
"homepage": "https://github.com/alexpechkarev/adonis-shopping-cart#readme",
"devDependencies": {
"@adonisjs/core": "^5.1.6",
"@adonisjs/mrm-preset": "^3.0.0",
"@types/node": "^15.0.2",
"@types/node-gcm": "^1.0.0",
"copyfiles": "^2.4.1",
"eslint": "^7.25.0",
"eslint-plugin-adonis": "^1.3.1",
"japa": "^3.1.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"adonisjs": {
"templates": {
"config": [
"cart.txt"
]
},
"env": {
"vat": ""
},
"types": "adonis-shopping-cart",
"providers": [
"adonis-shopping-cart"
]
}
}