-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.01 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.01 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@takram/planck-object",
"version": "0.2.2",
"description": "",
"repository": "takram-design-engineering/planck-object",
"main": "dist/planck-object.js",
"browser": "dist/planck-object.js",
"module": "dist/planck-object.module.js",
"author": "Shota Matsuda",
"license": "MIT",
"homepage": "http://takram.com/projects/planck",
"files": [
"package.json",
"README.md",
"dist/planck-object.js",
"dist/planck-object.min.js",
"dist/planck-object.module.js",
"src"
],
"scripts": {
"build": "npm-run-all main:compile main:compress",
"main:compile": "rollup -c",
"main:compress": "uglifyjs --compress --mangle --output ${npm_package_main%.*}.min.js ${npm_package_main}",
"test": "npm-run-all lint test:compile test:node test:cloud",
"test:compile": "npm-run-all --parallel test:compile:rollup test:compile:webpack",
"test:compile:rollup": "rollup -c rollup.config.unit.js",
"test:compile:webpack": "webpack --config webpack.config.unit.js",
"test:node": "mocha --recursive test/unit",
"test:browser": "browser-sync start --server . --files dist --startPath test --no-open --no-notify",
"test:cloud": "mocha test/setup.js",
"lint": "npm-run-all lint:main lint:test",
"lint:main": "standard -v *.js src/*.js src/**/*.js",
"lint:test": "standard -v --env mocha test/*.js test/**/*.js",
"lint-fix": "npm-run-all lint-fix:main lint-fix:test",
"lint-fix:main": "standard -v --fix *.js src/*.js src/**/*.js",
"lint-fix:test": "standard -v --fix --env mocha test/*.js test/**/*.js",
"prewatch": "npm-run-all main:compile test:compile",
"watch": "npm-run-all --parallel test:node watch:main watch:test watch:rollup watch:webpack test:browser",
"watch:main": "nodemon -C --watch rollup.config.js --watch src --exec 'npm-run-all main:compile test:node'",
"watch:test": "nodemon -C --watch test --exec 'npm-run-all test:compile test:node'",
"watch:rollup": "nodemon -C --watch rollup.config.unit.js --exec 'npm run test:compile:rollup'",
"watch:webpack": "nodemon -C --watch webpack.config.unit.js --exec 'npm run test:compile:webpack'"
},
"dependencies": {
"mixwith": "^0.1.1"
},
"peerDependencies": {
"@takram/planck-core": "0.x",
"@takram/planck-event": "0.x",
"@takram/planck-renderer": "0.x",
"three": "^0.92.0"
},
"devDependencies": {
"@takram/planck-core": "^0.6.0",
"@takram/planck-event": "^0.5.1",
"@takram/planck-renderer": "^0.2.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"browser-sync": "^2.23.7",
"chai": "^4.1.2",
"chalk": "^2.4.0",
"eslint": "^4.19.1",
"express": "^4.16.3",
"mocha": "^5.1.1",
"nodemon": "^1.17.3",
"npm-run-all": "^4.1.2",
"rollup": "^0.58.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"sauce-connect-launcher": "^1.2.4",
"saucelabs": "^1.4.0",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0",
"source-map-support": "^0.5.4",
"standard": "^11.0.1",
"three": "^0.92.0",
"uglify-js": "^3.3.22",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15"
},
"saucelabs": {
"framework": "mocha",
"platforms": [
[
"Windows 10",
"microsoftedge",
"13.10586"
],
[
"Windows 10",
"firefox",
"29.0"
],
[
"Windows 10",
"chrome",
"49.0"
],
[
"Linux",
"firefox",
"29.0"
],
[
"OS X 10.11",
"safari",
"10.0"
],
[
"OS X 10.11",
"firefox",
"29.0"
],
[
"OS X 10.11",
"chrome",
"49.0"
]
]
}
}