forked from aaronmars/martian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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": "mindtouch-martian",
"version": "1.9.0",
"description": "Core JavaScript API for MindTouch",
"license": "Apache-2.0",
"main": false,
"format": "esm",
"registry": "npm",
"repository": {
"type": "git",
"url": "https://github.com/MindTouch/martian"
},
"scripts": {
"test-node": "jest --config jest-node.json",
"watch-node": "jest --config jest-node.json --watch",
"test-jsdom": "jest --config jest-jsdom.json",
"watch-jsdom": "jest --config jest-jsdom.json --watch",
"test": "npm run test-jsdom & npm run test-node;wait",
"inspect": "eslint ./**/*.js"
},
"devDependencies": {
"babel-jest": "16.0.0",
"babel-polyfill": "6.16.0",
"babel-preset-es2015": "6.18.0",
"eslint": "3.8.1",
"eslint-config-mindtouch": "1.0.0",
"jest-cli": "16.0.2"
},
"author": "MindTouch",
"bugs": {
"url": "https://github.com/MindTouch/martian/issues"
},
"homepage": "https://github.com/MindTouch/martian",
"dependencies": {
"mindtouch-http.js": "git+https://github.com/mindtouch/mindtouch-http.js.git#1.2.0"
}
}