forked from glimmerjs/glimmer.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.27 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
73
74
75
76
{
"name": "glimmer.js",
"version": "0.13.0",
"private": true,
"license": "MIT",
"scripts": {
"build": "ember build --env production",
"changelog": "lerna-changelog",
"start": "ember serve",
"test": "ember test && ember test --env production",
"test:node": "bin/run-node-tests.js",
"problems": "tsc -p tsconfig.json --noEmit",
"tslint": "tslint --project tsconfig.json"
},
"workspaces": [
"packages/@glimmer/*"
],
"devDependencies": {
"@types/qunit": "^2.0.31",
"amd-name-resolver": "^1.0.0",
"babel-plugin-debug-macros": "^0.1.11",
"babel-plugin-strip-glimmer-utils": "^0.1.1",
"babel-plugin-transform-es2015-modules-amd": "^6.24.1",
"babel-plugin-transform-proto-to-assign": "^6.23.0",
"babel-preset-env": "^1.6.0",
"broccoli-babel-transpiler": "^6.1.2",
"broccoli-concat": "^3.2.2",
"broccoli-file-creator": "^1.1.1",
"broccoli-funnel": "^2.0.1",
"broccoli-merge-trees": "^2.0.0",
"broccoli-persistent-filter": "^1.2.13",
"broccoli-rollup": "^1.3.0",
"broccoli-typescript-compiler": "^4.1.0",
"child_process": "^1.0.2",
"dag-map": "^2.0.2",
"ember-build-utilities": "^0.4.0",
"ember-cli": "^2.14.2",
"ember-cli-sauce": "^1.3.0",
"eslint": "^4.3.0",
"glob": "^7.0.5",
"lerna-changelog": "^0.7.0",
"loader.js": "^4.0.10",
"mkdirp": "^0.5.1",
"prettier": "^1.15.3",
"qunit": "^2.4.1",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.17.0",
"semver": "^5.3.0",
"simple-html-tokenizer": "^0.5.3",
"testem": "^1.16.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "~3.2.2"
},
"dependencies": {
"tslib": "^1.8.0"
},
"resolutions": {
"amd-name-resolver": "https://github.com/ember-cli/amd-name-resolver.git"
},
"changelog": {
"repo": "glimmerjs/glimmer.js",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal",
"deprecation": ":warning: Deprecation"
}
}
}