-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1005 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
41
42
43
{
"name": "most-test",
"version": "1.3.0",
"description": "Unit testing tools for Most.js",
"typings": "type-definitions/most-test.d.ts",
"main": "lib/index.js",
"scripts": {
"test": "mocha",
"lint": "eslint src/*.js",
"test-dev": "mocha --watch --bail",
"precompile": "rimraf lib/ && mkdirp lib",
"compile": "babel -d lib/ src/",
"build": "npm run compile && npm run lint && npm test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axefrog/most-test.git"
},
"keywords": [
"most",
"most.js",
"unit",
"test",
"testing"
],
"author": {
"name": "Nathan Ridley",
"email": "axefrog@gmail.com"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-eslint": "^6.0.3",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"eslint": "^2.8.0",
"mkdirp": "^0.5.1",
"mocha": "^2.5.3",
"most": "*",
"rimraf": "^2.5.4"
}
}