-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "@defacto/cell-js",
"version": "1.1.2",
"description": "Simple solution for binding Javascript to specific templates or side server components",
"main": "dist/",
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint src/**/*.js",
"test:unit": "script/test",
"compile": "babel -d dist/ src/",
"prepare": "npm run compile"
},
"repository": "github:DefactoSoftware/cell-js",
"files": [
"dist",
"src"
],
"keywords": [
"component",
"template"
],
"author": "Matthijs Kuiper <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DefactoSoftware/cell-js/issues"
},
"homepage": "https://github.com/DefactoSoftware/cell-js#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"babel-eslint": "^9.0.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"jsdom": "^16.1.0",
"mocha": "^7.0.1",
"mocha-jsdom": "^2.0.0",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"sinon": "^8.1.1",
"sinon-chai": "^3.4.0"
},
"dependencies": {
"microevent": "^1.0.0"
}
}