-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.13 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
83
84
85
86
87
{
"name": "promish",
"version": "5.1.1",
"description": "ES6 Promise Shim",
"private": false,
"license": "MIT",
"author": {
"name": "Guyon Roche",
"email": "[email protected]",
"url": "https://github.com/guyonroche/promish"
},
"repository": {
"type": "git",
"url": "https://github.com/guyonroche/promish.git"
},
"keywords": [
"ES6",
"Promise",
"Shim",
"EcmaScript",
"Promises",
"resolve",
"reject",
"then",
"catch",
"finally",
"race",
"all",
"any",
"some",
"spread",
"Promisify",
"Promisification",
"call",
"apply",
"map",
"reduce"
],
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"es6-promise": "^3.0.2"
},
"devDependencies": {
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"bluebird": "*",
"browserify": "^14.1.0",
"browserify-shim": "^3.8.13",
"chai": "*",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-browserify": "^5.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jasmine": "^1.1.0",
"grunt-contrib-uglify": "^2.1.0",
"grunt-contrib-watch": "^1.0.0",
"jshint": "2.8.x",
"mocha": "*",
"pinkie": "*",
"q": "*",
"uglifyjs": "^2.4.10"
},
"scripts": {
"build": "./node_modules/.bin/grunt build",
"build-es5": "./node_modules/.bin/grunt es5",
"clean": "rm -rf build/* && rm -rf dist/*",
"clean-build": "npm run clean && npm run build",
"jshint": "npm run jshint-lib & npm run jshint-spec",
"jshint-lib": "node node_modules/jshint/bin/jshint --config ./.jshintrc ./lib --verbose",
"jshint-spec": "node node_modules/jshint/bin/jshint --config ./.jshintrc-spec ./spec --verbose",
"test": "npm run unit-test && npm run browser-test",
"unit-test": "mocha spec/unit",
"browser-test": "./node_modules/.bin/grunt jasmine",
"preversion": "npm run clean-build && npm run test",
"postversion": "git push --no-verify && git push --tags --no-verify"
},
"main": "lib/promish.js",
"files": [
"lib",
"dist",
"LICENSE",
"README.md"
]
}