-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 2.05 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
{
"name": "pools",
"scope": "beatthat",
"version": "1.0.10",
"description": "object pools",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/beatthat/pools.git"
},
"files": [
"index.js",
"scripts",
"src",
"Runtime",
"Samples",
"README.md",
"readmefiles"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/beatthat/pools/issues"
},
"homepage": "https://github.com/beatthat/pools",
"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"
},
"dependencies": {
"path": "^0.12.7",
"unity-npm-utils": "github:beatthat/unity-npm-utils#semver:^1.0.0"
},
"devDependencies": {},
"keywords": []
}