-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 1.78 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "mole",
"version": "1.1.0-alpha.0",
"description": "A tool for managing design decision outputs for different platforms",
"main": "dist/index.js",
"scripts": {
"jsonnet": "jsonnet src/default-config.jsonnet -o src/default-config.json",
"babel": "babel src -d dist",
"rollup": "rollup --config",
"build": "npm run rollup && eslint",
"demo": "NODE_ENV=development node src/demo.js",
"test2": "./node_modules/.bin/eslint src/ && npm run build",
"dev2": "npm run rollup && npm run demo",
"test": "jest --verbose",
"dev": "jest --watch"
},
"author": "Gavin McFarland",
"repository": {
"type": "git",
"url": "git+https://github.com/limitlessloop/mole.git"
},
"files": [
"/dist"
],
"license": "CC0-1.0",
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/node": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.3",
"@rbicker/jsonnet": "^0.1.1-0.12.1",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-rewire": "^1.2.0",
"babel-preset-minify": "^0.5.1",
"common-tags": "^1.8.0",
"eslint": "^7.3.1",
"jest": "^26.1.0",
"jsonnet-exec": "^0.1.0",
"minami": "^1.2.3",
"ms": "^2.1.2",
"node-addon-jsonnet": "^1.0.17",
"prettier": "^2.0.5",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^6.1.0"
},
"dependencies": {
"@rollup/plugin-node-resolve": "^8.1.0",
"@unboundedsystems/jsonnet": "^0.9.4-rc6",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"immutable": "^4.0.0-rc.12",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2",
"nunjucks": "^3.2.1"
},
"jest": {
"testEnvironment": "node",
"roots": [
"src",
"__tests__"
]
},
"keywords": [
"design",
"design systems",
"design tokens",
"css",
"ios",
"android"
]
}