-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 2.36 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
{
"name": "services",
"scope": "beatthat",
"version": "1.2.0",
"description": "enables you to inject or find global services",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/beatthat/services.git"
},
"files": [
"index.js",
"scripts",
"src",
"Runtime",
"Samples",
"README.md",
"readmefiles"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/beatthat/services/issues"
},
"homepage": "https://github.com/beatthat/services",
"scripts": {
"postinstall": "node scripts/postinstall.js",
"clean": "rm -f *.tgz package-lock.json && cd test && npm run clean",
"version": "git add -A",
"postversion": "git push && git push --tags && npm run clean",
"template-update": "node scripts/template-update.js",
"pretest-install": "rm -f *.tgz",
"test-install": "npm pack && cp ${npm_package_name}-${npm_package_version}.tgz ${npm_package_name}-latest.tgz && cd test && npm run clean && npm install",
"test-cp2src": "cd test && node scripts/cp2src.js",
"test-overwrite2src": "cd test && node scripts/overwrite2src.js",
"//": {
"clean": "deletes all non source files, products of tests etc",
"template-update": "pulls the latest version of the https://github.com/beatthat/unpm-unity-package-template.git and syncs changes to this package",
"test-install": "installs the 'test' package, which can be used for development",
"test-cp2src": "copies changes from 'test' package back to package src but does NOT delete removed files",
"test-overwrite2src": "copies changes from 'test' package back to src. Deletes src before the copy, so effectively whatever is in test becomes the src",
"npm version [patch|minor|major]": "after everything commited, use npm version to push a tagged release with bumped version"
},
"docs-generate": "node scripts/docs-generate.js",
"overwrite2clone": "./node_modules/.bin/overwrite2clone"
},
"dependencies": {
"comments": "beatthat/comments#semver:^1.0.0",
"path": "^0.12.7",
"pools": "beatthat/pools#semver:^1.0.0",
"safe-refs": "beatthat/safe-refs#semver:^1.0.0",
"type-utils": "github:beatthat/type-utils#semver:^1.0.0",
"unity-npm-utils": "github:beatthat/unity-npm-utils#semver:^1.0.0"
},
"devDependencies": {},
"keywords": []
}