forked from NativeScript/nativescript-sdk-examples-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.66 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
{
"name": "nativescript-sdk-examples-js",
"description": "NativeScript SDK Examples",
"author": "Telerik <support@telerik.com>",
"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",
"dependencies": {
"nativescript-theme-core": "^2.0.24",
"@nativescript/core": "7.3.0"
},
"devDependencies": {
"eslint": "7.20.0",
"fs-extra": "^0.30.0",
"markdown-snippet-injector": "^0.2.4",
"tar.gz": "^1.0.7",
"tslint": "6.1.3",
"typescript": "4.0.3",
"@nativescript/ios": "7.2.0",
"@nativescript/android": "7.0.1",
"@nativescript/types": "7.2.0",
"@nativescript/webpack": "4.1.0"
},
"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"
},
"main": "app.js"
}