forked from halfnelson/svelte-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "svelte-native",
"version": "0.1.6",
"description": "Svelte integration for NativeScript",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/halfnelson/svelte-native.git"
},
"homepage": "https://github.com/halfnelson/svelte-native",
"keywords": [
"nativescript",
"svelte"
],
"scripts": {
"clean": "npx rimraf ./dist/*",
"build": "npm run clean && rollup -c && node ./scripts/create-pkg.js",
"watch": "rollup -cw",
"deploy": "npm run build && cd dist && npm publish"
},
"author": "David Pershouse",
"license": "MIT",
"peerDependencies": {
"tns-core-modules": "^5.2.1",
"svelte": "^3.0.0-beta.15"
},
"devDependencies": {
"glob": "^7.1.3",
"rollup": "^1.1.2",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-typescript2": "^0.19.2",
"svelte": "^3.0.0-beta.15",
"svelte-loader": "^2.13.3",
"tns-core-modules": "^5.2.1",
"typescript": "^3.2.4",
"rimraf": "^2.6.3"
}
}