-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 789 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 789 Bytes
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
{
"name": "tiny-script-loader",
"version": "2.2.2",
"description": "Tiny script loader",
"scripts": {
"test": "sh -c 'npm run lint && npm run test-cover && istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100'",
"lint": "standard '**/*.js'",
"test-cover": "istanbul cover _mocha -- -r should --recursive",
"test-watch": "mocha -r should --recursive -w -R min -t 20"
},
"keywords": [
"script",
"loader"
],
"author": "nemtsov@gmail.com",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/behance/tiny-script-loader.git"
},
"devDependencies": {
"istanbul": "^0.4.4",
"mocha": "^3.0.2",
"should": "^11.0.0",
"sinon": "^1.17.5",
"standard": "^7.1.2"
}
}