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
30 lines (30 loc) · 831 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 831 Bytes
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
{
"name": "svelte-native",
"version": "0.1.2",
"description": "Svelte integration for NativeScript",
"private": true,
"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.8"
},
"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.8",
"svelte-loader": "^2.13.3",
"tns-core-modules": "^5.2.1",
"typescript": "^3.2.4",
"rimraf": "^2.6.3"
}
}