-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "@whitespace/twig-extension-attribute-helpers",
"version": "1.0.0",
"description": "A Twig.js extension that allows you to work more easily with html attributes inside Twig templates",
"keywords": [
"twig",
"twig extension",
"twig function",
"attributes",
"html attributes"
],
"repository": {
"type": "git",
"url": "https://github.com/whitespace-se/twig-extension-attribute-helpers.git"
},
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch --coverage",
"build": "npm run clean & babel -d ./lib ./src",
"build:watch": "babel --watch -d ./lib ./src",
"clean": "rm -rf ./lib",
"prepare": "npm run build",
"prettier": "prettier --write '**/*.{js,json,md,yml}'"
},
"author": "Whitespace",
"license": "AGPL",
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.0",
"eslint-plugin-jest": "^23.0.4",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"twig": "^1.14.0"
},
"dependencies": {
"he": "^1.2.0"
},
"publishConfig": {
"access": "public"
}
}