-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "@kwsites/cms-testimonial",
"description": "Testimonials",
"version": "0.2.0",
"private": false,
"author": "Steve King <steve@mydev.co>",
"contributors": [
{
"name": "Steve King",
"email": "steve@mydev.co"
}
],
"scripts": {
"preversion": "yarn run test",
"postversion": "npm publish --access public && git push && git push --tags",
"setup": "cms peers",
"test": "yarn run test:unit && yarn run test:integration",
"test:integration": "echo 'Integration tests to follow...'",
"test:unit": "mocha ./test/unit/**/*.spec.js"
},
"files": [
"index.js",
"lib/**/*.*",
"public/**/*.less",
"public/**/*.js",
"views/**/*.*"
],
"license": "MIT",
"repository": "git://github.com/kwsites/cms-testimonials.git",
"peerDependencies": {
"lodash": "^4"
},
"dependencies": {},
"devDependencies": {
"@kwsites/cms-build-tools": "^0.1.0",
"async": "^2.6.2",
"expect.js": "^0.3.1",
"mocha": "^6.1.2",
"sinon": "^7.3.1"
}
}