-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.22 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@thinknimble/tn-models",
"version": "1.3.1",
"description": "Utilities for building front-end models.",
"author": "William Huster <william@thinknimble.com>",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"compile": "babel src -d lib",
"prepublish": "npm run compile",
"test": "mocha --require @babel/register"
},
"directories": {
"lib": "./src",
"test": "./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thinknimble/tn-models"
},
"keywords": [
"javascript"
],
"homepage": "https://github.com/thinknimble/tn-models",
"dependencies": {
"@thinknimble/tn-utils": "^1.4.0",
"@babel/runtime": "^7.16.7"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"mocha": "^7.1.1"
},
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/transform-runtime"
],
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": false
}
]
]
}
}