forked from dojo/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "dojo2-todo-mvc-kitchensink",
"version": "0.0.1",
"description": "TodoMVC using Dojo",
"main": "src/main.tsx",
"scripts": {
"build": "dojo build",
"build:ghpages": "dojo build --dojorc .dojorc-ghpages",
"prettier": "prettier --write \"{docs,src,tests}/**/*.{ts,tsx,md}\"",
"build:tests": "dojo build -m unit && dojo build -m functional",
"test": "dojo build --dojorc .dojorc-test && npm run build:tests && dojo test -a -c local",
"test-ci": "dojo build --dojorc .dojorc-test && npm run build:tests && dojo test -a -c \"browserstack\" --usr dylanschiemann2 -k 4Q2g8YAc9qeZzB2hECnS"
},
"repository": {
"type": "git",
"url": "https://github.com/dojo/examples.git"
},
"license": "BSD-3-Clause",
"engines": {
"node": ">=6",
"npm": ">=3"
},
"dependencies": {
"@dojo/framework": "^6.0.0",
"@dojo/widgets": "^6.0.0",
"cldr-data": "~30.0.2",
"cldrjs": "0.5.0",
"tslib": "~1.9.1"
},
"devDependencies": {
"@dojo/cli": "^6.0.0",
"@dojo/cli-build-app": "^6.0.0",
"@dojo/cli-test-intern": "^6.0.0",
"@types/glob": "~5.0.0",
"@types/node": "^6.0.46",
"loader-utils": "^1.0.2",
"prettier": "1.17.1",
"typescript": "~3.4.5"
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"useTabs": true,
"printWidth": 120,
"arrowParens": "always"
}
}