-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.55 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
{
"name": "mallet",
"version": "1.5.2",
"description": "Real-time Angular rendering engine written in TypeScript, based on WebGL & Canvas",
"main": "dist/index.js",
"types": "dist/index.dt.ts",
"browser": "./test/app/test.module.js",
"scripts": {
"fastBuild": "tsc -p ./ && browserify --fast -d -s mallet --no-bundle-external --noparse=D:\\git\\mallet\\node_modules\\angular\\angular.min.js src/mallet/index.js -o dist/index.js",
"build": "tslint \"src/**/*.ts\" \"test/**/*.ts\" && fastBuild.cmd",
"pretest": "npm run build",
"test": "npx mocha --reporter spec test/spec/**/*.js",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push && git push --tags",
"push:patch": "npm run build && npm version patch",
"push:minor": "npm run build && npm version minor",
"push:major": "npm run build && npm version major",
"buildRun": "tsc -p ./ && node ./src/app.js",
"depUpdate": "npm i && npm link pulsar-lib",
"bundleTest:2d": "tsc -p ./test && browserify --debug test/app/test-2d.module.js -o test/build/bundle-2d.js",
"bundleTest:webgl": "tsc -p ./test && browserify -d --im --noparse=D:\\git\\mallet\\node_modules\\angular\\angular.min.js test/app/test-webgl.module.js -o test/build/bundle-webgl.js",
"updateApp:webgl": "npm run fastBuild && npm run bundleTest:webgl"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thunder033/mallet.git"
},
"keywords": [
"webgl",
"canvas",
"rendering",
"angular"
],
"author": "Greg Rozmarynowycz <[email protected]> (http://thunderlab.net)",
"license": "ISC",
"bugs": {
"url": "https://github.com/thunder033/mallet/issues"
},
"homepage": "https://github.com/thunder033/mallet#readme",
"devDependencies": {
"@types/angular": "^1.6.32",
"@types/chai": "^4.2.2",
"@types/chai-spies": "^1.0.3",
"@types/gl-matrix": "^2.4.0",
"@types/mocha": "^2.2.39",
"@types/node": "^12.7.5",
"@types/q": "0.0.32",
"@types/socket.io": "^1.4.28",
"@uirouter/angularjs": "^1.0.6",
"angular": "^1.6.6",
"bind-decorator": "^1.0.11",
"browserify": "^16.5.0",
"browserify-shader": "^0.1.2",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"dts-generator": "^3.0.0",
"gl-matrix": "^2.4.0",
"grunt": "^1.0.4",
"mallet-dev": "file:dist/",
"mocha": "^6.2.0",
"mocha-typescript": "^1.0.22",
"pulsar-lib": "github:thunder033/pulsar-lib",
"reflect-metadata": "^0.1.10",
"ts-node": "^9.1.1",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
}
}