-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 926 Bytes
/
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
{
"name": "pique",
"version": "1.0.0",
"description": "Promise Queue Library",
"main": "index.js",
"scripts": {
"build:umd": "webpack index.js dist/pique.js --config webpack.config.js",
"build:umd:min": "webpack index.js dist/pique.min.js --config webpack.config.production.js",
"test": "tape test/**/*.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thaliproject/pique.git"
},
"keywords": [
"Promise",
"Queue",
"Stack",
"FIFO",
"LIFO"
],
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/thaliproject/pique/issues"
},
"homepage": "https://github.com/thaliproject/pique#readme",
"devDependencies": {
"babel-core": "^6.5.1",
"babel-loader": "^6.2.2",
"lie": "^3.0.2",
"tap-spec": "^4.1.1",
"tape": "^4.4.0",
"webpack": "^1.12.13",
"wrapping-tape": "0.0.3"
}
}