-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.61 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "interlock-official-plugins",
"version": "0.1.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"build": "npm run build-packages",
"build-packages": "babel-node infra/build.js --verbose",
"check": "npm run lint && npm run test",
"install-packages": "babel-node infra/install.js --verbose",
"link": "babel-node infra/link.js --verbose",
"lint": "eslint --ext .js --ext .jst ./packages/**",
"postinstall": "npm run install-packages",
"test": "npm run test-functional",
"test-functional": "mocha --compilers js:babel-core/register tests/functional/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/interlockjs/official-plugins.git"
},
"author": "Dale Bustad <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/interlockjs/official-plugins/issues"
},
"homepage": "https://github.com/interlockjs/official-plugins#readme",
"dependencies": {
"interlock": "latest"
},
"devDependencies": {
"@divmain/eslint-config-defaults": "10.0.0",
"babel-cli": "^6.5.1",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.0",
"babel-polyfill": "^6.5.0",
"babel-preset-nodejs-lts": "^1.2.1",
"base64-loader": "^1.0.0",
"chai": "^3.5.0",
"eslint": "^2.7.0",
"eslint-plugin-filenames": "^0.2.0",
"glob": "^7.0.0",
"interlock-test-helper": "^0.2.0",
"json-loader": "^0.5.4",
"minimist": "^1.2.0",
"mocha": "^2.4.5",
"node-sass": "^3.8.0",
"sass-loader": "^4.0.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"through": "^2.3.8"
}
}