-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.51 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.51 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
{
"name": "@takram/planck-worker",
"version": "0.2.3",
"description": "",
"repository": "takram-design-engineering/planck-worker",
"main": "dist/planck-worker.js",
"browser": "dist/planck-worker.js",
"module": "dist/planck-worker.module.js",
"author": "Shota Matsuda",
"license": "MIT",
"homepage": "http://takram.com/projects/planck",
"files": [
"package.json",
"README.md",
"dist/planck-worker.js",
"dist/planck-worker.min.js",
"dist/planck-worker.module.js",
"src"
],
"scripts": {
"build": "npm-run-all main:compile main:uglify",
"main:compile": "rollup -c",
"main:uglify": "uglifyjs --compress --mangle --output dist/planck-worker.min.js dist/planck-worker.js",
"test": "npm-run-all lint test:compile test:cloud",
"test:compile": "npm-run-all --parallel test:compile:rollup test:compile:webpack test:compile:fixture",
"test:compile:rollup": "rollup -c rollup.config.unit.js",
"test:compile:webpack": "webpack --config webpack.config.unit.js",
"test:compile:fixture": "rollup -c rollup.config.fixture.js",
"test:cloud": "mocha test/setup.js",
"lint": "eslint src test",
"prewatch": "npm-run-all main:compile test:compile",
"watch": "npm-run-all --parallel watch:main watch:test watch:rollup watch:webpack serve",
"watch:main": "nodemon -C --watch rollup.config.js --watch src --exec 'npm-run-all main:compile'",
"watch:test": "nodemon -C --watch test --exec 'npm-run-all test:compile'",
"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'",
"serve": "browser-sync start --server . --files dist --startPath test --no-open --no-notify"
},
"dependencies": {
"uuid": "^3.2.1"
},
"peerDependencies": {
"@takram/planck-core": "0.x"
},
"devDependencies": {
"@takram/eslint-config-planck": "^0.3.1",
"@takram/planck-core": "^0.4.2",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"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-3": "^6.24.1",
"browser-sync": "^2.23.6",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chalk": "^2.3.0",
"eslint": "^4.17.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"express": "^4.16.2",
"mocha": "^5.0.0",
"nodemon": "^1.14.12",
"npm-run-all": "^4.1.2",
"rollup": "^0.55.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "~8.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"sauce-connect-launcher": "^1.2.3",
"saucelabs": "^1.4.0",
"source-map-support": "^0.5.3",
"uglify-js": "^3.3.9",
"webpack": "^3.10.0"
},
"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"
]
]
}
}