-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1009 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
38
39
40
{
"name": "restrung-js",
"description": "JavaScript string helpers built with functional composition.",
"version": "1.0.0",
"homepage": "https://github.com/restrung/restrung-js",
"author": {
"name": "Jason Bellamy",
"email": "j@sonbellamy.com",
"url": "http://jasonbellamy.com"
},
"repository": {
"type": "git",
"url": "https://github.com/restrung/restrung-js.git"
},
"bugs": {
"url": "https://github.com/restrung/restrung-js/issues"
},
"license": "MIT",
"engines": {
"node": ">= 0.12.0"
},
"scripts": {
"build": "babel -d dist src",
"clean": "rm -rf dist && mkdir dist",
"watch": "babel -w -d dist src",
"test": "mocha --compilers js:babel/register --recursive",
"preversion": "npm run clean && npm run build",
"postpublish": "git push && git push --tag"
},
"devDependencies": {
"babel": "^5.8.9",
"chai": "^3.2.0",
"core-js": "^0.9.6",
"mocha": "^2.3.0"
},
"keywords": [
"string",
"utils"
]
}