-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 924 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
{
"name": "lasso-use-strict",
"version": "1.0.0",
"description": "Lasso plugin for adding 'use strict' statements to JavaScript files.",
"main": "index.js",
"directories": {
"test": "node_modules/.bin/mocha --ui bdd --reporter spec ./test"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/austinkelleher/lasso-use-strict.git"
},
"keywords": [
"lasso",
"use",
"strict",
"plugin"
],
"author": "Austin Kelleher, [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/austinkelleher/lasso-use-strict/issues"
},
"homepage": "https://github.com/austinkelleher/lasso-use-strict#readme",
"devDependencies": {
"chai": "^3.5.0",
"eslint-config-semistandard": "^7.0.0",
"lasso": "^2.11.3",
"mocha": "^3.2.0",
"standard": "^8.6.0"
},
"dependencies": {
"lasso": "^2.11.3"
}
}