-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1009 Bytes
/
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
{
"name": "jx-cores",
"version": "1.2.2",
"description": "java script core js",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist",
"prebuild": "echo I run before the build script",
"postbuild": "echo I run after the build script",
"build": "npm run clean && NODE_ENV=production gulp build --gulpfile scripts/compiler.js",
"pub": "npm run build && npm publish",
"dev": "node scripts/server.js"
},
"author": "fallenink",
"license": "ISC",
"dependencies": {
"jx-structs": "*"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-runtime": "^6.26.0",
"check-versions": "^1.0.0",
"gulp": "^4.0.1",
"gulp-babel": "^8.0.0"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}