forked from dojo/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.15 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
{
"name": "@dojo/framework",
"version": "4.0.1-pre",
"description": "The Dojo Framework",
"directories": {
"doc": "docs",
"example": "examples",
"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 dist-examples coverage benchmark-results",
"dojo-package": "dojo-package",
"dojo-release": "dojo-release",
"examples:routing:tsc": "tsc -p examples/routing/tsconfig.json",
"examples:static": "cpx \"examples/**/*.html\" dist-examples",
"examples": "npm-run-all build -p examples:**",
"intern": "intern",
"lint:tsc": "tslint -p .",
"lint:prettier": "prettier -l \"{src,tests}/**/*.{ts,tsx}\"",
"lint": "run-p lint:*",
"precommit": "lint-staged",
"prettier": "prettier --write \"src/**/*.md\" \"src/**/*.ts\" \"tests/**/*.ts\"",
"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": "1.1.0",
"cldrjs": "0.4.8",
"css-select-umd": "1.3.0-rc0",
"diff": "3.4.0",
"globalize": "1.3.0",
"intersection-observer": "0.4.2",
"pepjs": "0.4.2",
"tslib": "1.8.1",
"web-animations-js": "2.3.1"
},
"devDependencies": {
"@dojo/loader": "^2.0.0",
"@dojo/scripts": "~3.0.1",
"@types/benchmark": "~1.0.0",
"@types/jsdom": "2.0.*",
"@types/multer": "~1.3.3",
"@types/node": "~9.6.5",
"@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": "32.0.1",
"codecov": "~3.0.4",
"cpx": "~1.5.0",
"husky": "~0.14.3",
"jsdom": "^9.5.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": "~2.6.2",
"whatwg-fetch": "^2.0.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"useTabs": true,
"printWidth": 120,
"arrowParens": "always"
}
}