-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.32 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
{
"name": "token-operations",
"version": "0.1.5",
"description": "Adds the ability to declare and run operations on design tokens",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./lib/*": "./lib/*.json5"
},
"files": [
"dist",
"lib"
],
"unbuild": {
"entries": [
"src/index"
],
"clean": true,
"rollup": {
"emitCJS": true
}
},
"scripts": {
"build": "npm run clean && unbuild",
"clean": "rm -rf ./dist",
"test": "mocha",
"prepublishOnly": "npm test && npm run build",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"keywords": [
"design tokens",
"operations"
],
"author": "Donnie D'Amato <fauxserious@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/ddamato/token-operations.git"
},
"bugs": {
"url": "https://github.com/ddamato/token-operations/issues"
},
"homepage": "https://github.com/ddamato/token-operations#readme",
"devDependencies": {
"auto-changelog": "^2.4.0",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"unbuild": "^1.2.1"
},
"dependencies": {
"json5": "^2.2.3"
}
}