This repository has been archived by the owner on Nov 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 loc) · 1.95 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
{
"name": "fidelity",
"version": "4.2.0",
"description": "A simple and fast Promises/A+ implementation",
"engines": {
"node": ">=4.0"
},
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint lib/index.js test/*.js",
"test": "node test/tape-test.js | tap-spec && promises-aplus-tests test/spec-adapter.js",
"coverage": "./coverage.sh",
"docs": "jsdoc --verbose -d docs -t ./node_modules/ink-docstrap/template -R README.md lib/index.js",
"prepublish": "nsp check",
"minify": "escompress lib/index.js > browser/fidelity-promise-min.js",
"browserify-tests": "browserify ./test/browser/test.js node_modules/promises-aplus-tests/lib/testFiles.js > test/browser/browserified-tests.js",
"test-browser": "opener http://localhost:9007/test/browser/index.html && http-server . -p 9007"
},
"files": [
"package.json",
"README.md",
"LICENSE.txt",
"browser",
"browser.tar.gz",
"lib"
],
"keywords": [
"promises",
"promise",
"deferred",
"future",
"aplus",
"A+"
],
"author": "Lance Ball <[email protected]> (http://lanceball.com)",
"license": "MIT",
"devDependencies": {
"browserify": "16.2.1",
"escompress": "~0.5.0",
"eslint": "5.0.1",
"eslint-config-semistandard": "~13.0.0",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-node": "8.0.0",
"eslint-plugin-promise": "~3.8.0",
"eslint-plugin-react": "~7.10.0",
"eslint-plugin-standard": "3.1.0",
"http-server": "~0.11.0",
"ink-docstrap": "~1.3.2",
"istanbul": "0.4.5",
"jsdoc": "3.5.5",
"marked": "^0.4.0",
"minifier": "0.8.1",
"mocha": "~5.2.0",
"moment": "^2.21.0",
"nsp": "~3.2.1",
"opener": "1.4.3",
"promises-aplus-tests": "2.1.2",
"tap-spec": "~5.0.0",
"tape": "~4.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bucharest-gold/fidelity"
}
}