-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.01 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": "wee-promise",
"version": "1.1.0",
"description": "An ultra light Promises / A+ implementation",
"main": "dist/wee-promise",
"scripts": {
"test": "grunt test",
"build": "grunt",
"prepublish": "npm run build"
},
"config": {
"banner": "/*! <%= pkg.name %> - <%= pkg.version %> - <%= pkg.author.name %> - <%= grunt.config.data.gitinfo.local.branch.current.shortSHA %> - <%= grunt.template.today('yyyy-mm-dd') %> */",
"connect": {
"port": 8001,
"base": ".",
"hostname": "0.0.0.0"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bernardmcmanus/wee-promise.git"
},
"keywords": [
"promise",
"A+",
"light"
],
"author": {
"name": "Bernard McManus",
"email": "bernard.mcmanus.iv@gmail.com",
"url": "http://github.com/bernardmcmanus"
},
"bugs": {
"url": "https://github.com/bernardmcmanus/wee-promise/issues"
},
"homepage": "https://github.com/bernardmcmanus/wee-promise",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.24.1",
"bluebird": "^3.0.5",
"chai": "^3.5.0",
"colors": "^1.1.2",
"connect-preprocess": "^1.0.0",
"connect-query": "^0.2.0",
"es6-module-transpiler": "^0.10.0",
"fs-extra": "^0.26.2",
"grunt": "^0.4.2",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-connect": "^0.11.2",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-jshint": "^0.11.3",
"grunt-contrib-uglify": "^3.0.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-gitinfo": "^0.1.7",
"grunt-mocha-phantomjs": "^2.0.1",
"intercept-stdout": "^0.1.2",
"lodash": "^4.16.4",
"mocha": "^3.1.2",
"promises-aplus-tests": "^2.1.1",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"urlrouter": "^0.5.4"
}
}