-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.19 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": "ember-ast-helpers",
"version": "0.4.0",
"description": "Utility belt to level-up your Ember AST transforms",
"keywords": [
"ember",
"AST",
"helpers",
"utils",
"handlebars",
"transforms"
],
"homepage": "https://github.com/cibernox/ember-ast-helpers",
"bugs": {
"url": "https://github.com/cibernox/ember-ast-helpers/issues"
},
"license": "MIT",
"author": "Miguel Camba <miguel.camba@gmail.com>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/cibernox/ember-ast-helpers.git"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "tsc && jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll --notify"
},
"devDependencies": {
"@glimmer/compiler": "^0.27.0",
"@glimmer/syntax": "^0.27.0",
"@types/jest": "^20.0.8",
"eslint-plugin-node": "^5.1.0",
"glob": "^7.0.0",
"jest": "^21.0.2",
"simple-html-tokenizer": "^0.4.1",
"tslint": "^5.7.0",
"typescript": "^2.6.2"
},
"engines": {
"node": ">= 6"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"testMatch": [
"<rootDir>/dist/test/**/*-test.js"
]
}
}