-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 854 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 854 Bytes
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
{
"name": "typee",
"version": "1.1.0",
"description": "A Javascript library for type checking",
"main": "dist/typee-umd-compiled.js",
"repository": "https://github.com/hugojing/typee",
"author": {
"name": "hugojing",
"email": "toloric@163.com",
"url": "https://changshiban.com"
},
"license": "MIT",
"scripts": {
"dist": "babel src/typee.js --out-file dist/typee-umd-compiled.js",
"compress": "uglifyjs --compress --mangle -o dist/typee-umd-compiled.min.js -- dist/typee-umd-compiled.js",
"prepublish": "npm run dist && npm run compress"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"uglify-js": "^2.8.22"
}
}