-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
106 lines (106 loc) · 3.17 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@dojo/framework",
"version": "8.0.1-pre",
"description": "The Dojo Framework",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"benchmark": "node ./run-benchmark.js",
"build:esm": "tsc -p tsconfig.esm.json",
"build:static:dev": "cpx \"{src,tests}/**/*.{html,png,jpg,gif,json,xml,css,txt,d.ts}\" dist/dev",
"build:static:release": "cpx \"src/**/*.d.ts\" dist/release",
"build:umd": "tsc",
"build": "npm-run-all -p build:** -s dojo-package",
"clean": "rimraf dist coverage benchmark-results",
"dojo-package": "dojo-package",
"dojo-release": "dojo-release",
"intern": "intern",
"lint:es": "eslint -c .eslintrc.json",
"lint:prettier": "prettier -l \"{docs,src,tests}/**/*.{ts,tsx,md}\"",
"lint": "run-p lint:*",
"precommit": "lint-staged",
"prettier": "prettier --write \"{docs,src,tests}/**/*.{ts,tsx,md}\"",
"release": "run-s lint clean build \"dojo-release -- {@}\" --",
"test": "run-s build intern",
"test:local": "run-s build \"intern config=@local\"",
"test:browserstack": "run-s build \"intern config=@browserstack\"",
"uploadCoverage": "codecov --file=coverage/coverage.json",
"watch:ts": "dojo-tsc-watcher -p tsconfig.json -p tsconfig.esm.json -- dojo-package",
"watch": "run-p watch:ts \"build:static:** -- --watch\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/dojo/framework.git"
},
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dojo/framework/issues"
},
"homepage": "https://github.com/dojo/framework#readme",
"dependencies": {
"@types/cldrjs": "0.4.20",
"@types/globalize": "0.0.34",
"@webcomponents/webcomponentsjs": "2.5.0",
"cldr-core": "36.0.0",
"cldrjs": "^0.5.0",
"cross-fetch": "3.0.2",
"css-select-umd": "1.3.0-rc0",
"css-vars-ponyfill": "2.3.0",
"diff": "3.5.0",
"globalize": "1.4.0",
"immutable": "3.8.2",
"intersection-observer": "0.4.2",
"pepjs": "0.4.2",
"requirejs-text": "2.0.15",
"resize-observer-polyfill": "1.5.0",
"tslib": "1.9.3",
"web-animations-js": "2.3.1",
"wicg-inert": "3.0.0"
},
"devDependencies": {
"@dojo/loader": "^2.0.0",
"@dojo/scripts": "~4.0.4",
"@types/benchmark": "~1.0.0",
"@types/diff": "3.5.0",
"@types/jsdom": "16.2.4",
"@types/multer": "~1.3.3",
"@types/node": "~10.12.10",
"@types/ramda": "0.25.5",
"@types/selenium-webdriver": "^3.0.8",
"@types/sinon": "~4.1.2",
"benchmark": "^1.0.0",
"bootstrap": "^3.3.7",
"chromedriver": "2.40.0",
"cldr-data": "36.0.0",
"codecov": "~3.0.4",
"cpx": "~1.5.0",
"eslint": "7.6.0",
"husky": "~0.14.3",
"jsdom": "16.4.0",
"jstat": "^1.7.1",
"lint-staged": "6.0.0",
"multer": "~1.3.0",
"npm-run-all": "~4.1.3",
"ramda": "0.25.0",
"rimraf": "~2.6.2",
"selenium-webdriver": "3.6.0",
"sinon": "~4.1.3",
"typescript": "3.5.3"
},
"lint-staged": {
"*.{ts,tsx,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"useTabs": true,
"printWidth": 120,
"arrowParens": "always"
}
}