-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 2.09 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": "@nativescript-community/extendedinfo",
"version": "1.0.0",
"scripts": {
"setup": "ts-patch install",
"prepare": "npm run setup",
"tsc": "cp src/extendedinfo.d.ts plugin && tsc -skipLibCheck -d",
"build": "rm -f .tsbuildinfo && npm run tsc",
"publish": "npm run setup && npm run build && lerna publish --create-release=github --force-publish",
"demo.ios": "npm i && npm run tsc && cd demo && tns run ios",
"demo.android": "npm i && npm run tsc && cd demo && tns run android",
"clean.demo": "rimraf demo/hooks demo/node_modules demo/platforms",
"clean": "rimraf plugin/ios plugin/android plugin/**/*.d.ts plugin/**/*.js plugin/**/*.js.map plugin/node_modules plugin/package-lock.json",
"plugin.watch.tsc": "npm run tsc -- -w",
"plugin.watch.android": "npm i && npm-watch build.android",
"plugin.watch.ios": "npm i && npm-watch build.ios",
"plugin.watch": "npm run plugin.watch.tsc & npm run plugin.watch.android & npm run plugin.watch.ios"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@nativescript/core": "7.0.0",
"@nativescript/types-android": "7.0.2",
"@nativescript/types-ios": "7.0.1",
"@nativescript/webpack": "~3.0.1",
"@types/node": "^10.12.21",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"eslint": "7.8.1",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"npm-watch": "^0.7.0",
"prompt": "^1.0.0",
"rimraf": "^3.0.2",
"ts-patch": "1.3.0",
"typescript": "~3.9.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nativescript-community/extendedinfo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nativescript-community/extendedinfo/issues"
},
"homepage": "https://github.com/nativescript-community/extendedinfo#readme",
"dependencies": {
"ts-node": "^9.0.0"
}
}