-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.09 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
{
"name": "tempura",
"version": "0.0.8",
"description": "ES2015+ template literal utilities under the form of tags.",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"test": "npm run lint && npm run build && npm run test-mocha",
"test-mocha": "mocha --compilers js:babel/register",
"lint": "eslint ./",
"patch": "release patch --run",
"minor": "release minor --run",
"major": "release major --run"
},
"repository": {
"type": "git",
"url": "git@github.com:mathieumg/tempura.git"
},
"author": "Mathieu M-Gosselin <mathieumg@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mathieumg/tempura/issues"
},
"homepage": "https://github.com/mathieumg/tempura",
"devDependencies": {
"babel": "^5.6.14",
"babel-eslint": "^4.1.3",
"eslint": "^1.7.3",
"eslint-config-semistandard": "^5.0.0",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-babel": "^2.1.1",
"eslint-plugin-standard": "^1.3.1",
"mocha": "^2.3.3",
"mt-changelog": "^0.6.2",
"release-script": "^0.5.4"
}
}