-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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
{
"name": "threesixty",
"version": "0.3.0",
"description": "A minimal, dependency-free vanilla 360 slider",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"build:umd": "webpack --mode=development",
"build:umd:min": "cross-env NODE_ENV=production webpack --mode=production",
"clean": "rimraf coverage dist lib",
"lint": "eslint src test example",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build && npm run build:umd && npm run build:umd:min",
"test": "cross-env NODE_ENV=test mocha --require @babel/register --recursive --require ./test/setup.js",
"test:coverage": "babel-node node_modules/.bin/isparta cover node_modules/.bin/_mocha --root src/ --report text",
"test:watch": "npm test -- --watch"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/rbartoli/threesixty.git"
},
"keywords": [
"threesixty",
"360 slider",
"slider",
"image sequence"
],
"author": {
"name": "Riccardo Bartoli",
"email": "[email protected]",
"url": "http://rblab.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rbartoli/threesixty/issues"
},
"homepage": "https://github.com/rbartoli/threesixty",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.0",
"canvas": "^2.4.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.16.0",
"isparta": "^4.1.1",
"jsdom": "^14.0.0",
"mocha": "^5.2.0",
"rimraf": "^2.6.3",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}