-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
82 lines (82 loc) · 2.34 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "spritespin",
"description": "jQuery plugin for creating flipbook animations",
"version": "4.1.0",
"author": "Alexander Graefenstein",
"license": "MIT",
"keywords": [
"spritespin",
"360",
"animation",
"flipbook",
"panorama",
"jquery-plugin",
"ecosystem:jquery"
],
"main": "release/spritespin.js",
"module": "release/src/index.js",
"typings": "release/src/index.d.ts",
"es2015": "release/esm2015/index.js",
"files": [
"release",
"README.md",
"LICENSE",
"package.json"
],
"repository": {
"type": "git",
"url": "git://github.com/giniedp/spritespin.git"
},
"bugs": {
"url": "https://github.com/giniedp/spritespin/issues"
},
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"lint": "tslint --config tslint.json src/**/*.ts",
"lint:silent": "tslint --config tslint.json src/**/*.ts || true",
"build": "tsc --project tsconfig.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm2015": "tsc --project tsconfig.esm2015.json",
"build:watch": "tsc -w",
"test": "karma start --no-auto-watch --single-run",
"test:watch": "karma start --auto-watch --no-single-run",
"test:coverage": "IS_COVERAGE=yes karma start --single-run",
"test:coveralls": "IS_COVERALLS=yes karma start --single-run && cat coverage/lcov/lcovonly | ./node_modules/.bin/coveralls"
},
"dependencies": {},
"peerDependencies": {
"jquery": ">1.11.0"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.2.0",
"@microsoft/api-extractor": "^7.2.2",
"@types/jasmine": "^2.5.54",
"@types/jquery": "^3.2.12",
"@types/node": "^8.0.27",
"coveralls": "^3.0.0",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-uglify": "^3.0.0",
"jasmine-core": "^2.8.0",
"jquery": "^3.2.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "1.1.0",
"karma-mocha-reporter": "^2.2.4",
"karma-phantomjs-launcher": "^1.0.4",
"karma-safari-launcher": "^1.0.0",
"karma-typescript": "^3.0.12",
"rollup": "^0.56.5",
"rollup-plugin-node-resolve": "^3.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"shelljs": "^0.8.1",
"through-gulp": "^0.5.0",
"tslint": "^5.7.0",
"typedoc": "^0.11.1",
"typescript": "^2.7.2"
}
}