-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
75 lines (75 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "nativescript-dev-sass",
"version": "1.3.5",
"description": "SASS CSS pre-processor for NativeScript projects.",
"scripts": {
"test": "exit 0",
"postinstall": "node postinstall.js",
"preuninstall": "node preuninstall.js",
"demo.ios": "npm run preparedemo && cd demo && tns run ios --emulator",
"demo.ios.device": "npm run preparedemo && cd demo && tns run ios",
"demo.android": "npm run preparedemo && cd demo && tns run android --emulator",
"test.ios": "cd demo && tns test ios --emulator",
"test.ios.device": "cd demo && tns test ios",
"test.android": "cd demo && tns test android",
"preparedemo": "cd demo && npm uninstall nativescript-dev-sass && npm install .. --save-dev && tns install",
"setup": "npm i && cd demo && npm i && cd .. && cd demo && npm install .. --save-dev && cd .."
},
"nativescript": {
"hooks": [
{
"type": "before-prepare",
"script": "lib/before-prepare.js",
"inject": true
},
{
"type": "before-watchPatterns",
"script": "lib/before-watchPatterns.js",
"inject": true
},
{
"type": "after-prepare",
"script": "lib/after-prepare.js",
"inject": true
},
{
"type": "before-watch",
"script": "lib/watch.js",
"inject": true
},
{
"type": "after-watch",
"script": "lib/after-watch.js",
"inject": true
}
],
"tns-ios": {
"version": "3.0.0"
}
},
"keywords": [
"NativeScript",
"SASS",
"CSS"
],
"author": {
"name": "Todd Anglin",
"email": "[email protected]"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ToddAnglin/nativescript-dev-sass.git"
},
"dependencies": {
"bluebird": "^3.4.6",
"node-sass": "^4.7.1",
"glob": "^7.1.2",
"nativescript-hook": "^0.2.0"
},
"bugs": {
"url": "https://github.com/toddanglin/nativescript-dev-sass/issues"
},
"homepage": "https://github.com/toddanglin/nativescript-dev-sass",
"readmeFilename": "README.md"
}