-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
43 lines (43 loc) · 1.41 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
{
"private": true,
"scripts": {
"bench": "node benches/serialize.js",
"build": "ember build",
"lint": "tslint -p tsconfig.json",
"prepare": "ember build --environment=production",
"test": "yarn run test:browser && yarn run test:node && yarn run test:types",
"test:browser": "ember test",
"test:node": "nyc --check-coverage -- qunit packages/@simple-dom/*/dist/test/commonjs/index.js packages/simple-dom/dist/test/commonjs/index.js",
"test:types": "tsc -p check-types/tsconfig.json"
},
"devDependencies": {
"@types/qunit": "^2.0.31",
"broccoli-concat": "^3.2.2",
"broccoli-debug": "^0.6.4",
"broccoli-funnel": "^2.0.1",
"broccoli-merge-trees": "^3.0.0",
"broccoli-persistent-filter": "^2.0.0",
"broccoli-rollup": "^2.0.0",
"broccoli-tee": "^1.0.2",
"broccoli-typescript-compiler": "^2.2.0",
"do-you-even-bench": "^1.0.5",
"ember-cli": "^3.0.0",
"lerna": "^2.5.1",
"loader.js": "^4.6.0",
"nyc": "^13.3.0",
"qunit": "^2.4.1",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-sourcemaps": "^0.4.2",
"tslint": "^5.7.0",
"typescript": "^2.7.1"
},
"workspaces": [
"packages/@simple-dom/void-map",
"packages/@simple-dom/serializer",
"packages/@simple-dom/document",
"packages/@simple-dom/dom-test-helper",
"packages/@simple-dom/interface",
"packages/@simple-dom/parser",
"packages/simple-dom"
]
}