-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.87 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "glimmer-synth",
"version": "0.5.0",
"description": "Glimmer synthesizer using WebAudio API.",
"directories": {
"doc": "doc",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jimenglish81/glimmer-synth.git"
},
"keywords": [
"glimmerjs",
"synth",
"WebAudio"
],
"author": "Jim English",
"bugs": {
"url": "https://github.com/jimenglish81/glimmer-synth/issues"
},
"homepage": "https://github.com/jimenglish81/glimmer-synth#readme",
"scripts": {
"build": "ember build -e production",
"precommit": "lint-staged",
"start": "ember server",
"test": "ember test",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"devDependencies": {
"@glimmer/application": "^0.7.2",
"@glimmer/application-pipeline": "^0.8.0",
"@glimmer/blueprint": "^0.5.0",
"@glimmer/inline-precompile": "^1.0.0",
"@glimmer/resolver": "^0.3.0",
"@glimmer/test-helpers": "^0.30.0",
"@types/qunit": "^2.0.31",
"broccoli-asset-rev": "^2.5.0",
"broccoli-funnel": "^1.2.0",
"broccoli-merge-trees": "^2.0.0",
"broccoli-stew": "^1.5.0",
"broccoli-string-replace": "^0.1.2",
"ember-cli": "^2.14.0",
"ember-cli-dependency-checker": "^2.0.1",
"ember-cli-inject-live-reload": "^1.6.1",
"ember-cli-sass": "^6.2.0",
"ember-cli-uglify": "^2.0.0-beta.1",
"husky": "^0.14.3",
"lint-staged": "^4.0.2",
"prettier": "^1.5.3",
"qunitjs": "^2.3.3",
"rollup-plugin-commonjs": "^8.1.0",
"sinon": "^2.4.1",
"surge": "^0.19.0",
"tslint": "^5.5.0",
"tslint-config-prettier": "^1.3.0",
"typescript": "^2.2.2"
},
"engines": {
"node": ">= 6.0"
},
"private": true,
"dependencies": {
"rxjs": "^5.4.2"
}
}