-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "djanjucks",
"version": "0.0.3",
"description": "A Django template engine built on top of Nunjucks.",
"main": "index.js",
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "babel src -d dist",
"prepare": "npm run build",
"test": "jest",
"test:coverage": "jest --coverage --collectCoverageFrom=src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudratha/djanjucks.git"
},
"keywords": [
"django",
"nunjucks",
"template",
"templating"
],
"author": "Gareth Cozens <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudratha/djanjucks/issues"
},
"homepage": "https://github.com/cloudratha/djanjucks#readme",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"babel-jest": "^24.8.0",
"jest": "^24.8.0"
},
"dependencies": {
"date-fns": "^1.30.1",
"from-exponential": "^1.0.0",
"humanize-duration": "^3.19.0",
"lodash.get": "^4.4.2",
"lodash.groupby": "^4.6.0",
"normalize-strings": "^1.1.0",
"nunjucks": "^3.2.0",
"slice.js": "^1.1.1",
"sprintf-js": "^1.1.2"
},
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
}
}
}