-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "stack-data",
"version": "1.2.0",
"description": "Simple stack implementation on es6",
"main": "index.es5.js",
"scripts": {
"coverage": "isparta cover _mocha index.js --include-all-sources -- --require babel-core/register",
"precoveralls": "npm run coverage",
"coveralls": "coveralls < coverage/lcov.info",
"test": "mocha --require babel-core/register",
"tdd": "npm test -- --watch",
"transpile": "babel index.js --out-file index.es5.js",
"prepublish": "npm run transpile",
"clean": "rimraf index.es5.js",
"push": "git push --follow-tags",
"postpublish": "npm-run-all clean push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greybax/stack-data/.git"
},
"keywords": [
"stack",
"data",
"structure"
],
"author": "Aleksandr Filatov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/greybax/stack-data/issues"
},
"homepage": "https://github.com/greybax/stack-data#readme",
"devDependencies": {
"assert": "*",
"babel-cli": "*",
"babel-core": ">=6.26.0",
"babel-preset-es2015": "*",
"coveralls": "*",
"isparta": "*",
"mocha": "*",
"npm-run-all": "*",
"rimraf": "*"
},
"dependencies": {}
}