-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.21 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
{
"name": "simple-promise",
"version": "1.0.0",
"description": "Promises/A+ compliant JavaScript promise implementation",
"main": "lib/SimplePromise.js",
"scripts": {
"build": "webpack --mode=build",
"dev": "webpack --progress --colors --watch --mode=dev",
"test": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js"
},
"devDependencies": {
"babel": "6.5.2",
"babel-core": "6.14.0",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.5",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.14.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "3.5.0",
"eslint-loader": "1.5.0",
"eslint-config-airbnb-base": "^7.0.1",
"eslint-plugin-import": "^1.14.0",
"mocha": "2.3.4",
"promises-aplus-tests": "^2.1.2",
"webpack": "1.13.2",
"yargs": "3.32.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Kamahl19/simple-promise.git"
},
"keywords": [
"promise",
"promises-aplus"
],
"author": "Martin Litvaj <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kamahl19/simple-promise/issues"
},
"homepage": "https://github.com/Kamahl19/simple-promise"
}