-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 962 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
37
38
39
{
"name": "codeofdesign",
"version": "1.3.0",
"description": "A designer's code of ethics.",
"main": "dist/index.cjs.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"transpile": "node ./scripts/write.js",
"prebuild": "npm run transpile",
"build": "rollup -c",
"dev": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeofdesign/code.git"
},
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"files": [
"dist"
],
"keywords": [
"design",
"ethics"
],
"author": "Simon Dagfinrud",
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/codeofdesign/code/issues"
},
"homepage": "https://github.com/codeofdesign/code#readme",
"devDependencies": {
"fs": "^0.0.1-security",
"js-yaml": "^4.1.0",
"line-by-line": "^0.1.6",
"rollup": "^2.60.0",
"rollup-plugin-node-resolve": "^5.2.0"
}
}