forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1021 Bytes
/
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
{
"name": "generator-fluid",
"version": "0.3.0",
"description": "A yeoman project generator for Fluid DataObjects",
"keywords": [
"yeoman-generator"
],
"homepage": "https://fluidframework.com",
"repository": "https://github.com/microsoft/FluidFramework",
"license": "MIT",
"author": "Microsoft and contributors",
"main": "app/index.js",
"files": [
"app"
],
"scripts": {
"check": "npm ls --global --depth 0",
"link": "npm install && npm link",
"test": "npm run test:unit & npm run test:end-to-end",
"test:end-to-end": "mocha test/endToEnd.js --unhandled-rejections=strict",
"test:unit": "mocha test/testApp.js --unhandled-rejections=strict",
"unlink": "npm rm --global generator-fluid"
},
"dependencies": {
"chalk": "^2.4.2",
"ts-morph": "^4.2.0",
"yeoman-generator": "^4.1.0"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"mocha": "^8.4.0",
"shelljs": "^0.8.4",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^2.4.1"
}
}