forked from NativeScript/nativescript-sdk-examples-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.76 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
{
"name": "nativescript-sdk-examples-js",
"description": "NativeScript SDK Examples",
"author": "Telerik <[email protected]>",
"version": "0.1.0",
"homepage": "https://github.com/NativeScript/nativescript-sdk-examples-js",
"repository": {
"type": "git",
"url": "https://github.com/NativeScript/nativescript-sdk-examples-js"
},
"bugs": {
"url": "https://github.com/NativeScript/nativescript-sdk-examples-js/issues"
},
"keywords": [
"NativeScript",
"JavaScript",
"SDK",
"example",
"documentation"
],
"license": "Apache-2.0",
"nativescript": {
"id": "org.nativescript.nativescriptsdkexamplesjs",
"tns-android": {
"version": "6.5.0"
},
"tns-ios": {
"version": "6.5.0"
}
},
"dependencies": {
"nativescript-theme-core": "^2.0.24",
"tns-core-modules": "^6.5.0"
},
"devDependencies": {
"eslint": "~5.9.0",
"fs-extra": "^0.30.0",
"markdown-snippet-injector": "^0.2.4",
"nativescript-dev-webpack": "^1.5.1",
"tar.gz": "^1.0.7",
"tns-platform-declarations": "^6.4.2",
"tslint": "5.11.0",
"typescript": "3.4.5"
},
"scripts": {
"lint": "eslint \"app/**/*.js\"",
"tslint": "tslint -p tsconfig.json",
"tsc": "tsc",
"build": "node scripts/build.js",
"archive": "node scripts/archive.js",
"inject": "mdinject --root=app --docsroot=dist/cookbook --sourceext=\".js|.ts|.css|.xml\" --snippettitles=\"JavaScript|TypeScript|CSS|XML\"",
"pretsc": "npm install",
"pretslint": "npm run tsc",
"prelint": "npm run tslint",
"prebuild": "npm run lint",
"postbuild": "npm run inject && npm run archive",
"e2e": "mocha --opts ./e2e/config/mocha.opts",
"update-webpack": "./node_modules/.bin/update-ns-webpack --deps --configs"
}
}