forked from webosose/com.webos.app.settings
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 KB
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
{
"name": "com.palm.app.settings",
"version": "1.1.0",
"description": "A general template for an Enact Moonstone application.",
"author": "",
"main": "src/index.js",
"scripts": {
"serve": "enact serve",
"pack": "enact pack",
"pack-p": "enact pack -p",
"watch": "enact pack --watch",
"clean": "enact clean",
"lint": "enact lint .",
"test": "enact test start --single-run --browsers PhantomJS",
"test-json": "enact test start --single-run --browsers PhantomJS --reporters json",
"test-watch": "enact test start --browsers PhantomJS"
},
"license": "Apache-2.0",
"private": true,
"repository": "",
"enact": {
"title": "Settings",
"isomorphic": true,
"ri": {
"baseSize": 24
}
},
"eslintConfig": {
"extends": "enact/strict"
},
"dependencies": {
"@enact/core": "^1.12.2",
"@enact/i18n": "^1.12.2",
"@enact/moonstone": "^1.12.2",
"@enact/spotlight": "^1.12.2",
"@enact/ui": "^1.12.2",
"@enact/webos": "^1.12.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
}
}