-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
76 lines (64 loc) · 3.48 KB
/
README
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
76
nhance@Home-Office:/mnt/c/Users/Nick Hance/Source/js4crm-resources/autocomplete-city$ npm init
This utility will walk you through creating a package.json file.
It only covers the most common items, and tries to guess sensible defaults.
See `npm help json` for definitive documentation on these fields
and exactly what they do.
Use `npm install <pkg>` afterwards to install a package and
save it as a dependency in the package.json file.
Press ^C at any time to quit.
package name: (autocomplete-city)
version: (1.0.0)
description: Autocompletes City names in Dynamics using Xrm API
entry point: (index.js)
test command:
git repository:
keywords: xrm, dynamics, autocomplete
author: Nick Hance <nhance@buildbettersoftware.com>
license: (ISC) Private
Sorry, license should be a valid SPDX license expression (without "LicenseRef"), "UNLICENSED", or "SEE LICENSE IN <filename>".
license: (ISC) SEE LICENSE IN LICENSE.md
About to write to /mnt/c/Users/Nick Hance/Source/js4crm-resources/autocomplete-city/package.json:
{
"name": "autocomplete-city",
"version": "1.0.0",
"description": "Autocompletes City names in Dynamics using Xrm API",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"xrm",
"dynamics",
"autocomplete"
],
"author": "Nick Hance <nhance@buildbettersoftware.com>",
"license": "SEE LICENSE IN LICENSE.md"
}
Is this OK? (yes) yes
nhance@Home-Office:/mnt/c/Users/Nick Hance/Source/js4crm-resources/autocomplete-city$ npm install --save @types/xrm
npm notice created a lockfile as package-lock.json. You should commit this file.
npm WARN autocomplete-city@1.0.0 No repository field.
+ @types/xrm@9.0.7
added 1 package from 6 contributors and audited 1 package in 7.198s
found 0 vulnerabilities
nhance@Home-Office:/mnt/c/Users/Nick Hance/Source/js4crm-resources/autocomplete-city$ npm install --save-dev webpack
npm WARN autocomplete-city@1.0.0 No repository field.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
+ webpack@4.19.1
added 316 packages from 279 contributors and audited 4162 packages in 33.926s
found 0 vulnerabilities
nhance@Home-Office:/mnt/c/Users/Nick Hance/Source/js4crm-resources/autocomplete-city$ npm install --save-dev webpack-cli
npm WARN autocomplete-city@1.0.0 No repository field.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
+ webpack-cli@3.1.0
added 83 packages from 37 contributors and audited 4309 packages in 28.484s
found 0 vulnerabilities
nhance@Home-Office:/mnt/c/Users/Nick Hance/Source/js4crm-resources/autocomplete-city$ npm install -g typescript
/home/nhance/.nvm/versions/node/v10.8.0/bin/tsc -> /home/nhance/.nvm/versions/node/v10.8.0/lib/node_modules/typescript/bin/tsc
/home/nhance/.nvm/versions/node/v10.8.0/bin/tsserver -> /home/nhance/.nvm/versions/node/v10.8.0/lib/node_modules/typescript/bin/tsserver
+ typescript@3.0.3
added 1 package from 1 contributor in 4.298s
nhance@Home-Office:/mnt/c/Users/Nick Hance/Source/js4crm-resources/autocomplete-city$ tsc --init
message TS6071: Successfully created a tsconfig.json file.