-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
{
"name": "rollup-plugin-dustjs",
"version": "0.0.2-pre",
"author": "Chris Deacy <[email protected]>",
"description": "A rollup plugin for importing dustjs templates as modules",
"keywords": [
"dustjs",
"dustjs-linkedin",
"rollup",
"rollup-plugin",
"templates"
],
"license": "MIT",
"repository": "github:chrisdothtml/rollup-plugin-dustjs",
"bugs": "https://github.com/chrisdothtml/rollup-plugin-dustjs/issues",
"files": [
"build/index.js",
"LICENSE",
"readme.md"
],
"main": "build/index.js",
"peerDependencies": {
"dustjs-linkedin": "^2.6.0"
},
"devDependencies": {
"chai": "^3.5.0",
"dustjs-linkedin": "^2.6.0",
"mocha": "^3.2.0",
"rollup": "^0.41.6",
"rollup-watch": "^3.2.2",
"snazzy": "^6.0.0",
"standard": "^9.0.2"
},
"scripts": {
"build": "rollup -c",
"build-w": "yarn build -- -w",
"lint": "standard \"src/**/*.js\" \"test/**/*.js\" --verbose | snazzy",
"test": "yarn lint && yarn build && mocha test/index.js"
}
}