Last change
on this file since eed0bf8 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.5 KB
|
Rev | Line | |
---|
[6a3a178] | 1 | {
|
---|
| 2 | "name": "stable",
|
---|
| 3 | "version": "0.1.8",
|
---|
| 4 | "keywords": [
|
---|
| 5 | "stable",
|
---|
| 6 | "array",
|
---|
| 7 | "sort"
|
---|
| 8 | ],
|
---|
| 9 | "description": "A stable array sort for JavaScript",
|
---|
| 10 | "repository": {
|
---|
| 11 | "type": "git",
|
---|
| 12 | "url": "https://github.com/Two-Screen/stable.git"
|
---|
| 13 | },
|
---|
| 14 | "main": "./stable.js",
|
---|
| 15 | "types": "./index.d.ts",
|
---|
| 16 | "files": [
|
---|
| 17 | "stable.js",
|
---|
| 18 | "stable.min.js",
|
---|
| 19 | "index.d.ts"
|
---|
| 20 | ],
|
---|
| 21 | "devDependencies": {
|
---|
| 22 | "rollup": "^0.57.1",
|
---|
| 23 | "standard": "^11.0.1",
|
---|
| 24 | "tape": "^4.6.3",
|
---|
| 25 | "uglify-js": "^3.3.21"
|
---|
| 26 | },
|
---|
| 27 | "scripts": {
|
---|
| 28 | "test": "standard src/ && node ./src/test.js",
|
---|
| 29 | "prepare": "npm run build && npm run minify",
|
---|
| 30 | "build": "rollup -c",
|
---|
| 31 | "minify": "uglifyjs --comments \"/^!/\" -c -m -o ./stable.min.js ./stable.js"
|
---|
| 32 | },
|
---|
| 33 | "testling": {
|
---|
| 34 | "files": "./src/test.js",
|
---|
| 35 | "browsers": [
|
---|
| 36 | "ie6",
|
---|
| 37 | "ie7",
|
---|
| 38 | "ie8",
|
---|
| 39 | "ie9",
|
---|
| 40 | "ie10",
|
---|
| 41 | "firefox/25",
|
---|
| 42 | "chrome/31",
|
---|
| 43 | "safari/6.0",
|
---|
| 44 | "opera/12.0",
|
---|
| 45 | "opera/17.0",
|
---|
| 46 | "iphone/6.0",
|
---|
| 47 | "android-browser/4.2"
|
---|
| 48 | ]
|
---|
| 49 | },
|
---|
| 50 | "author": "Angry Bytes <info@angrybytes.com>",
|
---|
| 51 | "contributors": [
|
---|
| 52 | "Domenic Denicola <domenic@domenicdenicola.com>",
|
---|
| 53 | "Mattias Buelens <mattias@buelens.com>",
|
---|
| 54 | "Stéphan Kochen <stephan@angrybytes.com>",
|
---|
| 55 | "Yaffle"
|
---|
| 56 | ],
|
---|
| 57 | "license": "MIT"
|
---|
| 58 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.