-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.7 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@slynova/symfony-encore",
"version": "0.3.1",
"description": "Wrapper of Symfony Encore for AdonisJS",
"keywords": [
"adonis",
"adonisjs",
"frontend",
"webpack",
"assets",
"sass",
"scss",
"postcss",
"symfony",
"encore"
],
"main": "build/providers/EncoreProvider.js",
"files": [
"build/providers",
"build/templates",
"build/instructions.js"
],
"scripts": {
"build": "npm run compile && npm run copyfiles",
"clean": "del build",
"commit": "git-cz",
"compile": "npm run lint && npm run clean && tsc",
"copyfiles": "copyfiles \"templates/**/*\" build",
"lint": "eslint . --ext=.ts",
"prepublishOnly": "npm run build",
"release": "np"
},
"author": "Romain Lanz <romain.lanz@slynova.ch>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Slynova-Org/symfony-encore.git"
},
"bugs": {
"url": "https://github.com/Slynova-Org/symfony-encore/issues"
},
"devDependencies": {
"@adonisjs/core": "^5.0.2-beta-rc-6",
"@adonisjs/mrm-preset": "^2.4.0",
"@adonisjs/require-ts": "^1.1.0",
"@adonisjs/sink": "^4.1.3",
"commitizen": "^4.2.2",
"copyfiles": "^2.4.0",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^3.0.1",
"eslint": "^7.14.0",
"eslint-plugin-adonis": "^1.0.15",
"np": "^7.0.0",
"typescript": "^4.1.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"contents": ".",
"anyBranch": false
},
"publishConfig": {
"access": "public"
},
"adonisjs": {
"instructions": "./build/instructions.js",
"providers": [
"@slynova/symfony-encore"
]
}
}