-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 KB
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": "precompiler",
"version": "0.0.2",
"description": "precompile kinds of html template into JavaScript source code",
"main": "dist/precompiler.common.js",
"module": "dist/precompiler.esm.js",
"unpkg": "dist/precompiler.js",
"repository": "git@github.com:JounQin/precompiler.git",
"author": "JounQin <admin@1stg.me>",
"license": "MIT",
"files": [
"dist/**.js"
],
"scripts": {
"build:umd": "rollup -c --format umd",
"build:cjs": "rollup -c --format cjs",
"build:es": "rollup -c --format es",
"build": "npm run build:umd && npm run build:cjs && npm run build:es",
"lint": "eslint . --max-warnings=10",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"prepublishOnly": "npm run build"
},
"dependencies": {
"buble": "^0.15.2",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.0.1",
"eslint": "^4.2.0",
"eslint-config-1stg": "^1.0.1",
"jest": "^20.0.4",
"rollup": "^0.49.0",
"rollup-plugin-babel": "^3.0.1",
"rollup-watch": "^4.3.1",
"yargs": "^8.0.2"
}
}