-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.42 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.42 KB
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
{
"name": "babylon-runtime",
"version": "0.1.12",
"description": "Code Less, Babylon more",
"main": "dist/_r.min.js",
"keywords": [
"babylonjs"
],
"directories": {
"help": "docs"
},
"scripts": {
"lint": "tslint src/**/*.ts{,x}",
"test": "rollup -c && grunt",
"build": "npm run lint && rollup -c && npm run test",
"typescript": "rollup -c",
"preversion": "npm run test",
"version": "rollup -c && git add package.json && git add -A dist",
"postversion": "git push origin && git push origin --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/babylon-runtime/_r.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/babylon-runtime/_r/issues"
},
"homepage": "https://babylon-runtime.github.io/",
"devDependencies": {
"@types/babylonjs": "^2.4.1",
"babylonjs": "^4.0.3",
"chai": "^4.2.0",
"grunt": "^1.0.4",
"grunt-karma": "^3.0.2",
"karma": "^3.1.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"pepjs": "^0.5.2",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-typescript2": "^0.17.2",
"rollup-plugin-uglify": "^6.0.3",
"tslib": "^1.10.0",
"tslint": "^5.20.0",
"typescript": "3.4.5"
},
"dependencies": {}
}