-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
55 lines (55 loc) · 1.15 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
{
"name": "slm",
"version": "2.0.0",
"description": "Slim/Jade like templating engine",
"main": "lib/slm.js",
"browser": "lib/slm_browser.js",
"scripts": {
"test": "jest"
},
"keywords": [
"html",
"jade",
"pug",
"slim",
"template"
],
"author": "Yury Korolev",
"license": "ISC",
"devDependencies": {
"codeclimate-test-reporter": "^0.5.0",
"gulp": "^3.8.11",
"gulp-concat": "^2.5.2",
"gulp-gzip": "^1.0.0",
"gulp-load-plugins": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-size": "3.0.0",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.4",
"gulp-webpack": "^1.3.0",
"jest": "22.4.3"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"__tests__/helper.js$"
],
"coverageThreshold": {
"global": {
"branches": 95.5,
"functions": 97,
"lines": 97,
"statements": 97
}
}
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/slm-lang/slm.git"
},
"bugs": {
"url": "https://github.com/slm-lang/slm/issues"
},
"homepage": "https://github.com/slm-lang/slm"
}