forked from NativeScript/sample-Groceries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "Groceries",
"version": "2.1.1",
"description": "A NativeScript-built iOS and Android app for managing grocery lists",
"repository": {
"type": "git",
"url": "https://github.com/nativescript/sample-Groceries.git"
},
"keywords": [
"NativeScript"
],
"author": "TJ VanToll <tj.vantoll@gmail.com> (http://tjvantoll.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nativescript/sample-Groceries/issues"
},
"homepage": "https://github.com/nativescript/sample-Groceries/groceries",
"devDependencies": {
"chai": "^3.4.1",
"jscs": "^2.10.1",
"jshint": "^2.8.0",
"karma": "^0.13.15",
"karma-chai": "^0.1.0",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.5",
"karma-nativescript-launcher": "^0.3.1",
"mocha": "^2.3.4"
},
"nativescript": {
"id": "com.tjvantoll.sampleGroceries",
"tns-ios": {
"version": "1.7.0"
},
"tns-android": {
"version": "1.7.1"
}
},
"dependencies": {
"email-validator": "^1.0.4",
"nativescript-iqkeyboardmanager": "^1.0.1",
"nativescript-social-share": "^1.1.2",
"nativescript-telerik-ui": "^1.0.0",
"nativescript-unit-test-runner": "^0.3.3",
"tns-core-modules": "1.7.1"
},
"scripts": {
"lint:jscs": "jscs app",
"lint:jshint": "jshint app",
"lint": "npm run lint:jshint && npm run lint:jscs"
}
}