-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.26 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": "objective-enums",
"version": "1.0.4",
"private": true,
"description": "Objective enums for JavaScript",
"main": "src/index.js",
"repository": "github:Traffician/objective-enums",
"scripts": {
"production": "rimraf dist && cross-env NODE_ENV=production babel src --out-dir dist",
"development": "cross-env NODE_ENV=development babel src --out-dir dist && node dist/index.js",
"watch": "babel-watch --watch src src/index.js",
"prod": "npm run production",
"dev": "npm run development",
"prepareDist": "npm run production && node utils/prepareDist.js",
"publish": "npm run prepareDist && npm publish dist --access public"
},
"author": "Oyvind Dev",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-private": "^0.1.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-watch": "^2.0.7",
"rimraf": "^2.6.2"
},
"dependencies": {},
"keywords": [
"enums",
"objective",
"javascript",
"ecmascript",
"enumerated",
"types",
"flags"
]
}